Skip to content

Commit

Permalink
Temporarily patching sway std lib
Browse files Browse the repository at this point in the history
  • Loading branch information
arboleya committed Aug 16, 2024
1 parent 29d6ba3 commit 48b0ab3
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/create-fuels-counter-guide/sway-programs/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["contract", "predicate", "script"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/demo-bun-fuels/sway-programs/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["./sample"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/demo-fuels/sway-programs/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["./sample"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/demo-typegen/demo-contract/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ license = "Apache-2.0"
name = "demo-contract"

[dependencies]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/demo-typegen/demo-predicate/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ license = "Apache-2.0"
name = "demo-predicate"

[dependencies]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/demo-typegen/demo-script/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ license = "Apache-2.0"
name = "demo-script"

[dependencies]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions apps/docs-snippets/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ members = [
"bytecode-input",
"configurable-pin",
]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/abi-coder/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["exhaustive-examples"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/abi-typegen/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ members = [
"./vector-simple",
"libs-for-testing",
]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/contract/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["simple-contract"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/fuel-gauge/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,6 @@ members = [
"vectors",
"void",
]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/fuels/test/fixtures/workspace/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ members = [
"./predicates/predicate",
"./libraries/library",
]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/script/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["./call-test-script"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions packages/utils/test/fixtures/forc-projects/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["simple"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }
3 changes: 3 additions & 0 deletions templates/nextjs/sway-programs/Forc.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[workspace]
members = ["contract", "predicate", "script"]

[patch.'https://github.com/fuellabs/sway']
std = { git = "https://github.com/fuellabs/sway", branch = "master" }

0 comments on commit 48b0ab3

Please sign in to comment.