diff --git a/Cargo.toml b/Cargo.toml index 376849e66c..866ac59809 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/crates/papyrus_monitoring_gateway/Cargo.toml b/crates/papyrus_monitoring_gateway/Cargo.toml index dc39e7154a..fd0a325b2b 100644 --- a/crates/papyrus_monitoring_gateway/Cargo.toml +++ b/crates/papyrus_monitoring_gateway/Cargo.toml @@ -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 @@ -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"] } diff --git a/crates/papyrus_node/Cargo.toml b/crates/papyrus_node/Cargo.toml index 22777b8d80..e218ac25c2 100644 --- a/crates/papyrus_node/Cargo.toml +++ b/crates/papyrus_node/Cargo.toml @@ -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"] } diff --git a/crates/papyrus_rpc/Cargo.toml b/crates/papyrus_rpc/Cargo.toml index d7919a5b72..9c69105a83 100644 --- a/crates/papyrus_rpc/Cargo.toml +++ b/crates/papyrus_rpc/Cargo.toml @@ -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 @@ -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 diff --git a/crates/papyrus_sync/Cargo.toml b/crates/papyrus_sync/Cargo.toml index e3d4ece4ff..d28d350899 100644 --- a/crates/papyrus_sync/Cargo.toml +++ b/crates/papyrus_sync/Cargo.toml @@ -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 @@ -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 diff --git a/crates/tests-integration/Cargo.toml b/crates/tests-integration/Cargo.toml index 56b0ded973..66d0af9949 100644 --- a/crates/tests-integration/Cargo.toml +++ b/crates/tests-integration/Cargo.toml @@ -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" }