From 32538a7d76ab9f4f06757cd3af6253d7e1945502 Mon Sep 17 00:00:00 2001 From: Dori Medini Date: Thu, 1 Aug 2024 14:25:06 +0300 Subject: [PATCH] chore(ci): move papyrus_proc_macros dep to root toml --- Cargo.toml | 1 + crates/papyrus_p2p_sync/Cargo.toml | 2 +- crates/papyrus_rpc/Cargo.toml | 2 +- crates/papyrus_storage/Cargo.toml | 2 +- crates/papyrus_sync/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 741d73f0bc..9c0a6b83da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -123,6 +123,7 @@ 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_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" } parity-scale-codec = "=3.6.9" parity-scale-codec-derive = "=3.6.9" diff --git a/crates/papyrus_p2p_sync/Cargo.toml b/crates/papyrus_p2p_sync/Cargo.toml index 70586b89ba..56b95f016d 100644 --- a/crates/papyrus_p2p_sync/Cargo.toml +++ b/crates/papyrus_p2p_sync/Cargo.toml @@ -15,7 +15,7 @@ metrics.workspace = true papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" } papyrus_config.workspace = true papyrus_network = { path = "../papyrus_network", version = "0.4.0-rc.0" } -papyrus_proc_macros = { path = "../papyrus_proc_macros", 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" } serde.workspace = true diff --git a/crates/papyrus_rpc/Cargo.toml b/crates/papyrus_rpc/Cargo.toml index a8af13e337..7de6d3ddf7 100644 --- a/crates/papyrus_rpc/Cargo.toml +++ b/crates/papyrus_rpc/Cargo.toml @@ -21,7 +21,7 @@ metrics.workspace = true 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 = { path = "../papyrus_proc_macros", version = "0.4.0-rc.0" } +papyrus_proc_macros.workspace = true papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" } regex = { workspace = true } serde = { workspace = true, features = ["derive"] } diff --git a/crates/papyrus_storage/Cargo.toml b/crates/papyrus_storage/Cargo.toml index 09536dea65..a65f09e857 100644 --- a/crates/papyrus_storage/Cargo.toml +++ b/crates/papyrus_storage/Cargo.toml @@ -36,7 +36,7 @@ num-bigint.workspace = true page_size.workspace = true papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" } papyrus_config.workspace = true -papyrus_proc_macros = { path = "../papyrus_proc_macros", version = "0.4.0-rc.0" } +papyrus_proc_macros.workspace = true parity-scale-codec.workspace = true primitive-types.workspace = true serde = { workspace = true, features = ["derive"] } diff --git a/crates/papyrus_sync/Cargo.toml b/crates/papyrus_sync/Cargo.toml index 11e74b98d0..19977f3346 100644 --- a/crates/papyrus_sync/Cargo.toml +++ b/crates/papyrus_sync/Cargo.toml @@ -19,7 +19,7 @@ metrics.workspace = true papyrus_base_layer.workspace = true papyrus_common = { path = "../papyrus_common", version = "0.4.0-rc.0" } papyrus_config.workspace = true -papyrus_proc_macros = { path = "../papyrus_proc_macros", version = "0.4.0-rc.0" } +papyrus_proc_macros.workspace = true papyrus_storage = { path = "../papyrus_storage", version = "0.4.0-rc.0" } reqwest = { workspace = true, features = ["blocking", "json"] } serde = { workspace = true, features = ["derive"] }