Skip to content

Commit

Permalink
build: move local deps to root toml
Browse files Browse the repository at this point in the history
commit-id:c7e2f0b9
  • Loading branch information
Itay-Tsabary-Starkware committed Aug 8, 2024
1 parent a3cd2d0 commit 8f66c2d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions crates/batcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions crates/batcher_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions crates/consensus_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions crates/consensus_manager_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8f66c2d

Please sign in to comment.