Skip to content

Commit

Permalink
chore(ci): move papyrus_storage 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 1919cec commit 0fce9e6
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ papyrus_base_layer = { path = "crates/papyrus_base_layer", 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" }
papyrus_storage = { path = "crates/papyrus_storage", version = "0.4.0-rc.0" }
parity-scale-codec = "=3.6.9"
parity-scale-codec-derive = "=3.6.9"
paste = "1.0.15"
Expand Down
2 changes: 1 addition & 1 deletion crates/native_blockifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cairo-vm.workspace = true
indexmap.workspace = true
log.workspace = true
num-bigint.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
pyo3 = { workspace = true, features = ["hashbrown", "num-bigint"] }
pyo3-log.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lazy_static.workspace = true
once_cell.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_config.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
rand = { workspace = true, optional = true }
rand_chacha = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
Expand All @@ -36,7 +36,7 @@ assert_matches.workspace = true
cairo-lang-casm.workspace = true
cairo-lang-utils.workspace = true
indexmap = { workspace = true, features = ["serde"] }
papyrus_storage = { path = "../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
pretty_assertions.workspace = true
rand.workspace = true
rand_chacha.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_monitoring_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ hyper = { workspace = true, features = ["full"] }
metrics-exporter-prometheus = { version = "0.12.1" }
metrics-process = { version = "1.0.11" }
papyrus_config.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
rand.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
Expand All @@ -24,7 +24,7 @@ validator = { workspace = true, features = ["derive"] }
[dev-dependencies]
http-body = { version = "0.4.5" }
metrics.workspace = true
papyrus_storage = { path = "../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
pretty_assertions.workspace = true
starknet_client = { path = "../starknet_client", features = ["testing"] }
tower = { workspace = true, features = ["util"] }
2 changes: 1 addition & 1 deletion crates/papyrus_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ papyrus_network = { path = "../papyrus_network", version = "0.4.0-rc.0" }
papyrus_p2p_sync = { path = "../papyrus_p2p_sync", version = "0.4.0-rc.0" }
papyrus_protobuf = { path = "../papyrus_protobuf", version = "0.4.0-rc.0" }
papyrus_rpc = { workspace = true, optional = true }
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
papyrus_sync = { path = "../papyrus_sync", version = "0.4.0-rc.0" }
reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
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 @@ -17,7 +17,7 @@ papyrus_config.workspace = true
papyrus_network = { path = "../papyrus_network", version = "0.4.0-rc.0" }
papyrus_proc_macros.workspace = true
papyrus_protobuf = { path = "../papyrus_protobuf", version = "0.4.0-rc.0" }
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
serde.workspace = true
starknet_api.workspace = true
starknet-types-core.workspace = true
Expand All @@ -29,7 +29,7 @@ tracing.workspace = true
[dev-dependencies]
assert_matches.workspace = true
lazy_static.workspace = true
papyrus_storage = { path = "../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
static_assertions.workspace = true
rand.workspace = true
rand_chacha.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_config.workspace = true
papyrus_execution = { path = "../papyrus_execution", version = "0.4.0-rc.0" }
papyrus_proc_macros.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
regex = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
Expand All @@ -49,7 +49,7 @@ lazy_static.workspace = true
metrics-exporter-prometheus.workspace = true
mockall.workspace = true
papyrus_execution = { path = "../papyrus_execution", features = ["testing"] }
papyrus_storage = { path = "../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
papyrus_test_utils = { path = "../papyrus_test_utils" }
pretty_assertions.workspace = true
prometheus-parse.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ papyrus_base_layer.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_config.workspace = true
papyrus_proc_macros.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
starknet-types-core.workspace = true
Expand All @@ -33,7 +33,7 @@ tracing.workspace = true
[dev-dependencies]
assert_matches.workspace = true
mockall.workspace = true
papyrus_storage = { path = "../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
papyrus_test_utils = { path = "../papyrus_test_utils" }
pretty_assertions.workspace = true
simple_logger.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/sequencing/papyrus_block_builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license-file.workspace = true
description = "A block-builder for Starknet blocks"

[dependencies]
papyrus_storage = { path = "../../papyrus_storage", version = "0.4.0-rc.0", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
starknet_api.workspace = true
thiserror.workspace = true
tracing.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/sequencing/papyrus_consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ papyrus_common = { path = "../../papyrus_common", version = "0.4.0-dev.2" }
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" }
papyrus_storage = { path = "../../papyrus_storage", version = "0.4.0-dev.2" }
papyrus_storage.workspace = true
serde = { workspace = true, features = ["derive"] }
starknet-types-core.workspace = true
starknet_api.workspace = true
Expand All @@ -27,6 +27,6 @@ mockall.workspace = true
papyrus_network = { path = "../../papyrus_network", version = "0.4.0-dev.2", features = [
"testing",
] }
papyrus_storage = { path = "../../papyrus_storage", features = ["testing"] }
papyrus_storage = { workspace = true, features = ["testing"] }
papyrus_test_utils = { path = "../../papyrus_test_utils" }
test-case.workspace = true
2 changes: 1 addition & 1 deletion crates/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ itertools.workspace = true
mempool_test_utils.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_rpc.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_storage.workspace = true
reqwest.workspace = true
serde_json.workspace = true
starknet-types-core.workspace = true
Expand Down

0 comments on commit 0fce9e6

Please sign in to comment.