Skip to content

Commit

Permalink
fix: ensure scarb points to the correct plugin version (#2194)
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm authored Jul 20, 2024
1 parent d90b52b commit 729f46f
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 54 deletions.
67 changes: 18 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ rpassword = "7.2.0"
rstest = "0.18.2"
rstest_reuse = "0.6.0"
salsa = "0.16.1"
scarb = { git = "https://github.com/software-mansion/scarb", rev = "be95601" }
scarb-ui = { git = "https://github.com/software-mansion/scarb", rev = "be95601" }
scarb = { git = "https://github.com/software-mansion/scarb", tag = "v2.7.0-rc.4" }
scarb-ui = { git = "https://github.com/software-mansion/scarb", tag = "v2.7.0-rc.4" }
semver = "1.0.5"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "arbitrary_precision" ] }
Expand Down
4 changes: 3 additions & 1 deletion crates/dojo-core/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ name = "dojo"
version = "0.7.3"

[dependencies]
dojo_plugin = { git = "https://github.com/dojoengine/dojo", branch = "bump-cairo-2.7" }
# Rev points to support for Cairo 2.7.0-rc.3 without any tag yet. Should be
# updated once a release is cut with `2.7.0-rc.3` support in it.
dojo_plugin = { git = "https://github.com/dojoengine/dojo", rev = "d90b52b" }
starknet = "=2.7.0-rc.3"

# Dojo core is tested with sozo, hence we need a namespace for the test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ dependencies = [
[[package]]
name = "dojo_plugin"
version = "0.7.3"
source = "git+https://github.com/dojoengine/dojo?branch=bump-cairo-2.7#17bc842f2f87b6ac0472d196efc11f01a5e55add"
source = "git+https://github.com/dojoengine/dojo?rev=d90b52b#d90b52b89749ac8af82f352dc08aa0b1378cfae6"
2 changes: 1 addition & 1 deletion examples/spawn-and-move/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ dependencies = [
[[package]]
name = "dojo_plugin"
version = "0.7.3"
source = "git+https://github.com/dojoengine/dojo?branch=bump-cairo-2.7#88b87323e20b872cdb86eed879e96c792b6583ab"
source = "git+https://github.com/dojoengine/dojo?rev=d90b52b#d90b52b89749ac8af82f352dc08aa0b1378cfae6"

0 comments on commit 729f46f

Please sign in to comment.