Skip to content

Commit

Permalink
chore(ci): move papyrus_protobuf 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 be85a74 commit 291e8fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ papyrus_monitoring_gateway = { path = "crates/papyrus_monitoring_gateway", versi
papyrus_network = { path = "crates/papyrus_network", version = "0.4.0-rc.0" }
papyrus_p2p_sync = { path = "crates/papyrus_p2p_sync", version = "0.4.0-rc.0" }
papyrus_proc_macros = { path = "crates/papyrus_proc_macros", version = "0.4.0-rc.0" }
papyrus_protobuf = { path = "crates/papyrus_protobuf", version = "0.4.0-rc.0" }
papyrus_rpc = { path = "crates/papyrus_rpc", version = "0.4.0-rc.0" }
papyrus_storage = { path = "crates/papyrus_storage", version = "0.4.0-rc.0" }
papyrus_test_utils = { path = "crates/papyrus_test_utils", version = "0.4.0-rc.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ papyrus_consensus.workspace = true
papyrus_monitoring_gateway.workspace = true
papyrus_network.workspace = true
papyrus_p2p_sync.workspace = true
papyrus_protobuf = { path = "../papyrus_protobuf", version = "0.4.0-rc.0" }
papyrus_protobuf.workspace = true
papyrus_rpc = { workspace = true, optional = true }
papyrus_storage.workspace = true
papyrus_sync = { path = "../papyrus_sync", version = "0.4.0-rc.0" }
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_p2p_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_network.workspace = true
papyrus_proc_macros.workspace = true
papyrus_protobuf = { path = "../papyrus_protobuf", version = "0.4.0-rc.0" }
papyrus_protobuf.workspace = true
papyrus_storage.workspace = true
serde.workspace = true
starknet_api.workspace = true
Expand All @@ -34,7 +34,7 @@ static_assertions.workspace = true
rand.workspace = true
rand_chacha.workspace = true
papyrus_test_utils.workspace = true
papyrus_protobuf = { path = "../papyrus_protobuf", features = ["testing"] }
papyrus_protobuf = { workspace = true, features = ["testing"] }

# The `metrics` crate is used by `latency_histogram` proc macro, which is used in this crate.
[package.metadata.cargo-machete]
Expand Down
2 changes: 1 addition & 1 deletion crates/sequencing/papyrus_consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ metrics.workspace = true
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_network.workspace = true
papyrus_protobuf = { path = "../../papyrus_protobuf", version = "0.4.0-dev.2" }
papyrus_protobuf.workspace = true
papyrus_storage.workspace = true
serde = { workspace = true, features = ["derive"] }
starknet-types-core.workspace = true
Expand Down

0 comments on commit 291e8fb

Please sign in to comment.