Skip to content

Commit

Permalink
chore(ci): move papyrus_rpc 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 e5260dd commit 8220b75
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ once_cell = "1.19.0"
os_info = "3.6.0"
page_size = "0.6.0"
papyrus_config = { path = "crates/papyrus_config", version = "0.4.0-rc.0" }
papyrus_rpc = { path = "crates/papyrus_rpc", 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/gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ hyper.workspace = true
mempool_test_utils.workspace = true
num-traits.workspace = true
papyrus_config.workspace = true
papyrus_rpc = { path = "../papyrus_rpc", version = "0.4.0-rc.0" }
papyrus_rpc.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
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 @@ -33,7 +33,7 @@ papyrus_monitoring_gateway = { path = "../papyrus_monitoring_gateway", version =
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 = { path = "../papyrus_rpc", version = "0.4.0-rc.0", optional = true }
papyrus_rpc = { workspace = true, optional = true }
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
papyrus_sync = { path = "../papyrus_sync", version = "0.4.0-rc.0" }
reqwest = { workspace = true, features = ["blocking", "json"] }
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 @@ -16,7 +16,7 @@ indexmap.workspace = true
itertools.workspace = true
mempool_test_utils.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" }
papyrus_rpc = { path = "../papyrus_rpc", version = "0.4.0-rc.0" }
papyrus_rpc.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" }
reqwest.workspace = true
serde_json.workspace = true
Expand Down

0 comments on commit 8220b75

Please sign in to comment.