Skip to content

Commit

Permalink
chore(ci): move papyrus_common 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 a661f49 commit 279d0df
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ once_cell = "1.19.0"
os_info = "3.6.0"
page_size = "0.6.0"
papyrus_base_layer = { path = "crates/papyrus_base_layer", version = "0.4.0-rc.0" }
papyrus_common = { path = "crates/papyrus_common", version = "0.4.0-rc.0" }
papyrus_config = { path = "crates/papyrus_config", version = "0.4.0-rc.0" }
papyrus_proc_macros = { path = "crates/papyrus_proc_macros", version = "0.4.0-rc.0" }
papyrus_rpc = { path = "crates/papyrus_rpc", version = "0.4.0-rc.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ indexmap.workspace = true
itertools.workspace = true
lazy_static.workspace = true
once_cell.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_storage.workspace = true
rand = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ libp2p = { workspace = true, features = [
"yamux",
] }
metrics.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
replace_with.workspace = true
serde = { workspace = true, features = ["derive"] }
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 @@ -26,7 +26,7 @@ itertools.workspace = true
lazy_static.workspace = true
once_cell.workspace = true
papyrus_base_layer.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_consensus = { path = "../sequencing/papyrus_consensus", version = "0.4.0-rc.0" }
papyrus_monitoring_gateway = { path = "../papyrus_monitoring_gateway", version = "0.4.0-rc.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_p2p_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ futures.workspace = true
indexmap.workspace = true
lazy_static.workspace = true
metrics.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_network = { path = "../papyrus_network", version = "0.4.0-rc.0" }
papyrus_proc_macros.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_proc_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ quote = "1.0.26"
syn = { version = "2.0.39", features = ["full"] }

[dev-dependencies]
metrics.workspace = true
metrics-exporter-prometheus.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-dev.1" }
metrics.workspace = true
papyrus_common.workspace = true
papyrus_test_utils = { path = "../papyrus_test_utils" }
prometheus-parse.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_protobuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ starknet_api.workspace = true
starknet-types-core.workspace = true
papyrus_test_utils = { path = "../papyrus_test_utils", optional = true }
thiserror.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-dev.2" }
papyrus_common.workspace = true

[dev-dependencies]
rand.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ hyper = { workspace = true, features = ["full"] }
jsonrpsee = { workspace = true, features = ["full"] }
lazy_static.workspace = true
metrics.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_execution = { path = "../papyrus_execution", version = "0.4.0-rc.0" }
papyrus_proc_macros.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ memmap2.workspace = true
metrics.workspace = true
num-bigint.workspace = true
page_size.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_proc_macros.workspace = true
parity-scale-codec.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ itertools.workspace = true
lru.workspace = true
metrics.workspace = true
papyrus_base_layer.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_proc_macros.workspace = true
papyrus_storage.workspace = true
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 @@ -10,7 +10,7 @@ description = "Reach consensus for Starknet"
async-trait.workspace = true
futures.workspace = true
metrics.workspace = true
papyrus_common = { path = "../../papyrus_common", version = "0.4.0-dev.2" }
papyrus_common.workspace = true
papyrus_config.workspace = true
papyrus_network = { path = "../../papyrus_network", version = "0.4.0-dev.2" }
papyrus_protobuf = { path = "../../papyrus_protobuf", version = "0.4.0-dev.2" }
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ http.workspace = true
indexmap = { workspace = true, features = ["serde"] }
mockall = { workspace = true, optional = true }
os_info.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_config.workspace = true
rand = { workspace = true, optional = true }
rand_chacha = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cairo-lang-starknet-classes.workspace = true
indexmap.workspace = true
itertools.workspace = true
mempool_test_utils.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_common.workspace = true
papyrus_rpc.workspace = true
papyrus_storage.workspace = true
reqwest.workspace = true
Expand Down

0 comments on commit 279d0df

Please sign in to comment.