Skip to content

Commit

Permalink
chore(ci): move starknet_client dep to root toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dorimedini-starkware committed Aug 1, 2024
1 parent 279d0df commit fded627
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ starknet-core = "0.6.0"
starknet-crypto = "0.5.1"
starknet-types-core = { version = "0.1.5", features = ["hash", "prime-bigint", "std"] }
starknet_api = { path = "crates/starknet_api", version = "0.13.0-rc.0" }
starknet_client = { path = "crates/starknet_client", version = "0.4.0-rc.0" }
starknet_gateway = { path = "crates/gateway", version = "0.0" }
starknet_mempool = { path = "crates/mempool", version = "0.0" }
starknet_mempool_infra = { path = "crates/mempool_infra", version = "0.0" }
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_monitoring_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ papyrus_storage.workspace = true
rand.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
starknet_client = { path = "../starknet_client" }
starknet_client.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full", "sync"] }
tracing.workspace = true
Expand All @@ -26,5 +26,5 @@ http-body = { version = "0.4.5" }
metrics.workspace = true
papyrus_storage = { workspace = true, features = ["testing"] }
pretty_assertions.workspace = true
starknet_client = { path = "../starknet_client", features = ["testing"] }
starknet_client = { workspace = true, features = ["testing"] }
tower = { workspace = true, features = ["util"] }
2 changes: 1 addition & 1 deletion crates/papyrus_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
starknet_api = { workspace = true, features = ["testing"] }
starknet_client = { path = "../starknet_client" }
starknet_client.workspace = true
strum.workspace = true
tokio = { workspace = true, features = ["full", "sync"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_client = { path = "../starknet_client", version = "0.4.0-rc.0" }
starknet_client.workspace = true
tokio = { workspace = true, features = ["full", "sync"] }
tower = { workspace = true, features = ["full"] }
tracing.workspace = true
Expand Down Expand Up @@ -58,6 +58,6 @@ rand_chacha.workspace = true
reqwest.workspace = true
starknet-core.workspace = true
starknet_api = { workspace = true, features = ["testing"] }
starknet_client = { path = "../starknet_client", features = ["testing"] }
starknet_client = { workspace = true, features = ["testing"] }
strum.workspace = true
strum_macros.workspace = true
4 changes: 2 additions & 2 deletions crates/papyrus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_client = { path = "../starknet_client" }
starknet_client.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full", "sync"] }
tracing.workspace = true
Expand All @@ -38,5 +38,5 @@ papyrus_test_utils = { path = "../papyrus_test_utils" }
pretty_assertions.workspace = true
simple_logger.workspace = true
starknet_api = { workspace = true, features = ["testing"] }
starknet_client = { path = "../starknet_client", features = ["testing"] }
starknet_client = { workspace = true, features = ["testing"] }
tokio-stream.workspace = true
2 changes: 1 addition & 1 deletion crates/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ reqwest.workspace = true
serde_json.workspace = true
starknet-types-core.workspace = true
starknet_api.workspace = true
starknet_client = { path = "../starknet_client", version = "0.4.0-rc.0" }
starknet_client.workspace = true
starknet_gateway = { workspace = true, features = ["testing"] }
starknet_mempool_infra.workspace = true
starknet_mempool_node = { path = "../mempool_node", version = "0.0" }
Expand Down

0 comments on commit fded627

Please sign in to comment.