-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Resolving new example * Bump to v0.48.0 * Formatting * Fixing formatting before committing again * Generating contracts temp * Generating contracts temp * formatting * Ready to merge once sway file has been updated
- Loading branch information
1 parent
e1ae516
commit 8ba20ca
Showing
4 changed files
with
31 additions
and
33 deletions.
There are no files selected for viewing
28 changes: 14 additions & 14 deletions
28
docs/guides/examples/quickstart/counter-contract/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ authors = ["Fuel Labs <[email protected]>"] | |
license = "Apache-2.0" | ||
|
||
[dev-dependencies] | ||
fuels = { version = "0.47", features = ["fuel-core-lib"] } | ||
fuels = { version = "0.48", features = ["fuel-core-lib"] } | ||
tokio = { version = "1.12", features = ["rt", "macros"] } | ||
|
||
[[test]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[[package]] | ||
name = 'core' | ||
source = 'path+from-root-63B5D95B29B128A3' | ||
name = "core" | ||
source = "path+from-root-AD80769CAE44474A" | ||
|
||
[[package]] | ||
name = 'counter-contract' | ||
source = 'member' | ||
dependencies = ['std'] | ||
name = "counter-contract" | ||
source = "member" | ||
dependencies = ["std"] | ||
|
||
[[package]] | ||
name = 'std' | ||
source = 'git+https://github.com/fuellabs/sway?tag=v0.45.0#92dc9f361a9508a940c0d0708130f26fa044f6b3' | ||
dependencies = ['core'] | ||
name = "std" | ||
source = "git+https://github.com/fuellabs/sway?tag=v0.46.0#e75f14b03636bc96751a6760304a1a6d3eb5937d" | ||
dependencies = ["core"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters