Skip to content

Commit b539283

Browse files
authored
chore(dojo): update dojo rev (#25)
* chore(dojo): update dojo rev * update xtask cargo toml
1 parent faef1af commit b539283

File tree

9 files changed

+3727
-5784
lines changed

9 files changed

+3727
-5784
lines changed

Cargo.lock

Lines changed: 3698 additions & 5760 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ inherits = "release"
3131
cainome = { version = "0.5.0", features = [ "abigen-rs" ] }
3232
cainome-cairo-serde = { version = "0.1.0" }
3333

34-
dojo-utils = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
35-
dojo-types = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
36-
dojo-core = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
37-
dojo-world = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
38-
dojo-test-utils = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
39-
dojo-metrics = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
34+
dojo-utils = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
35+
dojo-types = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
36+
dojo-core = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
37+
dojo-world = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
38+
dojo-test-utils = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
39+
dojo-metrics = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
4040

4141
topological-sort = "0.2"
4242

@@ -143,6 +143,11 @@ walkdir = "2.5.0"
143143
ipfs-api-backend-hyper = { git = "https://github.com/ferristseng/rust-ipfs-api", rev = "af2c17f7b19ef5b9898f458d97a90055c3605633", features = [ "with-hyper-rustls", "with-send-sync" ] }
144144
mime_guess = "2.0"
145145

146+
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
147+
scarb = { git = "https://github.com/dojoengine/scarb", rev = "d749b9545f5c50b078870a322a12efe7a17914b6" }
148+
sozo-ops = { git = "https://github.com/dojoengine/dojo", rev = "4145801" }
149+
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
150+
146151

147152
# server
148153
hyper = "0.14.27"

crates/graphql/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ camino.workspace = true
3939
dojo-test-utils = { workspace = true, features = [ "build-examples" ] }
4040
dojo-utils.workspace = true
4141
dojo-world = { workspace = true, features = [ "ipfs" ] }
42-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
42+
katana-runner.workspace = true
4343
serial_test = "2.0.0"
4444
starknet.workspace = true
4545
starknet-crypto.workspace = true
4646
tempfile.workspace = true
4747
toml.workspace = true
4848
# TODO: check if it's better to actually reexpose scarb in sozo-scarbext to
4949
# avoid having to depend on scarb here.
50-
scarb = { git = "https://github.com/dojoengine/scarb", rev = "8a60513c03e72b8a84f3ac266c61aac40c565aca" }
51-
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.0" }
50+
scarb.workspace = true
51+
sozo-scarbext.workspace = true
5252
torii-processors = { workspace = true }

crates/grpc/server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ cainome.workspace = true
4646
camino.workspace = true
4747
dojo-test-utils.workspace = true
4848
dojo-utils.workspace = true
49-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
50-
scarb = { git = "https://github.com/dojoengine/scarb", rev = "8a60513c03e72b8a84f3ac266c61aac40c565aca" }
49+
katana-runner.workspace = true
50+
scarb.workspace = true
5151
tempfile.workspace = true
52-
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.0" }
52+
sozo-scarbext.workspace = true
5353
torii-indexer.workspace = true
5454
torii-processors = { workspace = true }
5555

crates/indexer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ torii-processors.workspace = true
4646
[dev-dependencies]
4747
dojo-test-utils.workspace = true
4848
dojo-utils.workspace = true
49-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
50-
scarb = { git = "https://github.com/dojoengine/scarb", rev = "8a60513c03e72b8a84f3ac266c61aac40c565aca" }
51-
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.0" }
49+
katana-runner.workspace = true
50+
scarb.workspace = true
51+
sozo-scarbext.workspace = true
5252
tempfile.workspace = true
5353
sqlx.workspace = true

crates/libp2p/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ torii-libp2p-types = { workspace = true }
2121

2222
[dev-dependencies]
2323
indexmap.workspace = true
24-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
24+
katana-runner.workspace = true
2525
tempfile.workspace = true
2626
tokio.workspace = true
2727
tracing-subscriber.workspace = true

crates/libp2p/relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ torii-libp2p-types = { workspace = true }
3030

3131
[dev-dependencies]
3232
indexmap.workspace = true
33-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
33+
katana-runner.workspace = true
3434
tempfile.workspace = true
3535
tokio.workspace = true
3636
tracing-subscriber.workspace = true

crates/sqlite/sqlite/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ tracing.workspace = true
4343
[dev-dependencies]
4444
dojo-test-utils.workspace = true
4545
dojo-utils.workspace = true
46-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
47-
scarb = { git = "https://github.com/dojoengine/scarb", rev = "8a60513c03e72b8a84f3ac266c61aac40c565aca" }
48-
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.0" }
46+
katana-runner.workspace = true
47+
scarb.workspace = true
48+
sozo-scarbext.workspace = true
4949
tempfile.workspace = true
5050
torii-indexer.workspace = true

xtask/generate-test-db/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ anyhow.workspace = true
1010
dojo-test-utils.workspace = true
1111
dojo-utils.workspace = true
1212
dojo-world.workspace = true
13-
katana-runner = { git = "https://github.com/dojoengine/katana", rev = "5cb249c0fa59fa6b7c88b32557e7baf8944cdb3d" }
13+
katana-runner.workspace = true
1414
reqwest = { workspace = true, features = [ "json" ] }
15-
scarb = { git = "https://github.com/dojoengine/scarb", rev = "8a60513c03e72b8a84f3ac266c61aac40c565aca" }
16-
sozo-ops = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
1715
starknet.workspace = true
1816
tokio.workspace = true
19-
sozo-scarbext = { git = "https://github.com/dojoengine/dojo", tag = "v1.4.1" }
17+
sozo-scarbext.workspace = true
18+
scarb.workspace = true
19+
sozo-ops.workspace = true

0 commit comments

Comments
 (0)