From 8f66c2d298e9f5fbe3d08f7903bf2329fb37a0c3 Mon Sep 17 00:00:00 2001 From: Itay Tsabary Date: Thu, 8 Aug 2024 12:09:57 +0300 Subject: [PATCH] build: move local deps to root toml commit-id:c7e2f0b9 --- Cargo.toml | 3 +++ crates/batcher/Cargo.toml | 4 ++-- crates/batcher_types/Cargo.toml | 4 ++-- crates/consensus_manager/Cargo.toml | 4 ++-- crates/consensus_manager_types/Cargo.toml | 4 ++-- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5246339f52..207205c202 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -174,7 +174,10 @@ 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_batcher_types = { path = "crates/batcher_types", version = "0.0" } starknet_client = { path = "crates/starknet_client", version = "0.4.0-rc.0" } +starknet_consensus_manager = { path = "crates/consensus_manager", version = "0.0" } +starknet_consensus_manager_types = { path = "crates/consensus_manager_types", version = "0.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/batcher/Cargo.toml b/crates/batcher/Cargo.toml index 743c131069..3d40d97ad3 100644 --- a/crates/batcher/Cargo.toml +++ b/crates/batcher/Cargo.toml @@ -11,6 +11,6 @@ workspace = true [dependencies] async-trait.workspace = true -starknet_batcher_types = { path = "../batcher_types", version = "0.0" } -starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" } +starknet_batcher_types.workspace = true +starknet_mempool_infra.workspace = true tokio.workspace = true diff --git a/crates/batcher_types/Cargo.toml b/crates/batcher_types/Cargo.toml index 0b7936e4d1..c79e7d06ce 100644 --- a/crates/batcher_types/Cargo.toml +++ b/crates/batcher_types/Cargo.toml @@ -12,7 +12,7 @@ workspace = true [dependencies] async-trait.workspace = true mockall.workspace = true -papyrus_proc_macros = { path = "../papyrus_proc_macros" } +papyrus_proc_macros.workspace = true serde = { workspace = true, features = ["derive"] } -starknet_mempool_infra = { path = "../mempool_infra" } +starknet_mempool_infra.workspace = true thiserror.workspace = true diff --git a/crates/consensus_manager/Cargo.toml b/crates/consensus_manager/Cargo.toml index e99400c0b7..7fa57cf38a 100644 --- a/crates/consensus_manager/Cargo.toml +++ b/crates/consensus_manager/Cargo.toml @@ -11,6 +11,6 @@ workspace = true [dependencies] async-trait.workspace = true -starknet_consensus_manager_types = { path = "../consensus_manager_types", version = "0.0" } -starknet_mempool_infra = { path = "../mempool_infra", version = "0.0" } +starknet_consensus_manager_types.workspace = true +starknet_mempool_infra.workspace = true tokio.workspace = true diff --git a/crates/consensus_manager_types/Cargo.toml b/crates/consensus_manager_types/Cargo.toml index e9aa4580d9..7bba772e6d 100644 --- a/crates/consensus_manager_types/Cargo.toml +++ b/crates/consensus_manager_types/Cargo.toml @@ -12,7 +12,7 @@ workspace = true [dependencies] async-trait.workspace = true mockall.workspace = true -papyrus_proc_macros = { path = "../papyrus_proc_macros" } +papyrus_proc_macros.workspace = true serde = { workspace = true, features = ["derive"] } -starknet_mempool_infra = { path = "../mempool_infra" } +starknet_mempool_infra.workspace = true thiserror.workspace = true