diff --git a/Cargo.toml b/Cargo.toml index a7a1f7474..407792cee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -106,6 +106,7 @@ reth-rpc-types-compat = { path = "./crates/rpc/rpc-types-compat" } reth-discv4 = { path = "./crates/net/discv4" } reth-eth-wire = { path = "./crates/net/eth-wire" } reth-ecies = { path = "./crates/net/ecies" } +reth-tracing = {path = "./crates/tracing"} # revm revm = "3.5.0" diff --git a/bin/reth/Cargo.toml b/bin/reth/Cargo.toml index db28516ae..287912f0b 100644 --- a/bin/reth/Cargo.toml +++ b/bin/reth/Cargo.toml @@ -41,7 +41,7 @@ reth-rpc-api = { path = "../../crates/rpc/rpc-api", features = ["client"] } reth-network = { path = "../../crates/net/network", features = ["serde"] } reth-network-api.workspace = true reth-downloaders = { path = "../../crates/net/downloaders", features = ["test-utils"] } -reth-tracing = { path = "../../crates/tracing" } +reth-tracing.workspace = true reth-tasks.workspace = true reth-net-nat = { path = "../../crates/net/nat" } reth-payload-builder.workspace = true diff --git a/crates/consensus/beacon/Cargo.toml b/crates/consensus/beacon/Cargo.toml index 5e72b1b78..276850126 100644 --- a/crates/consensus/beacon/Cargo.toml +++ b/crates/consensus/beacon/Cargo.toml @@ -43,7 +43,7 @@ reth-stages = { path = "../../stages", features = ["test-utils"] } reth-blockchain-tree = { path = "../../blockchain-tree", features = ["test-utils"] } reth-db = { workspace = true, features = ["test-utils"] } reth-provider = { workspace = true, features = ["test-utils"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true reth-revm = { path = "../../revm" } reth-downloaders = { path = "../../net/downloaders" } diff --git a/crates/net/discv4/Cargo.toml b/crates/net/discv4/Cargo.toml index 95fb6bc92..bdc752d3e 100644 --- a/crates/net/discv4/Cargo.toml +++ b/crates/net/discv4/Cargo.toml @@ -38,7 +38,7 @@ serde = { workspace = true, optional = true } [dev-dependencies] rand.workspace = true tokio = { workspace = true, features = ["macros"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true [features] default = ["serde"] diff --git a/crates/net/dns/Cargo.toml b/crates/net/dns/Cargo.toml index f6ed6faf0..090ad7af5 100644 --- a/crates/net/dns/Cargo.toml +++ b/crates/net/dns/Cargo.toml @@ -38,7 +38,7 @@ serde_with = { version = "3.3.0", optional = true } [dev-dependencies] tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true [features] default = ["serde"] diff --git a/crates/net/downloaders/Cargo.toml b/crates/net/downloaders/Cargo.toml index 95e4ff77e..f6b372892 100644 --- a/crates/net/downloaders/Cargo.toml +++ b/crates/net/downloaders/Cargo.toml @@ -40,7 +40,7 @@ itertools = { workspace = true, optional = true } [dev-dependencies] reth-db = { workspace = true, features = ["test-utils"] } reth-interfaces = { workspace = true, features = ["test-utils"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true assert_matches.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } diff --git a/crates/net/eth-wire/Cargo.toml b/crates/net/eth-wire/Cargo.toml index 636b30c50..ed77752c3 100644 --- a/crates/net/eth-wire/Cargo.toml +++ b/crates/net/eth-wire/Cargo.toml @@ -39,7 +39,7 @@ proptest-derive = { workspace = true, optional = true } [dev-dependencies] reth-primitives = { workspace = true, features = ["arbitrary"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true ethers-core = { workspace = true, default-features = false } test-fuzz = "4" diff --git a/crates/net/nat/Cargo.toml b/crates/net/nat/Cargo.toml index 54d373908..80b69e713 100644 --- a/crates/net/nat/Cargo.toml +++ b/crates/net/nat/Cargo.toml @@ -25,7 +25,7 @@ thiserror.workspace = true serde_with = { version = "3.3.0", optional = true } [dev-dependencies] -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true tokio = { workspace = true, features = ["macros"] } [features] diff --git a/crates/net/network/Cargo.toml b/crates/net/network/Cargo.toml index c4c6abcf3..d9524fac4 100644 --- a/crates/net/network/Cargo.toml +++ b/crates/net/network/Cargo.toml @@ -76,7 +76,7 @@ reth-primitives = { workspace = true, features = ["test-utils"] } reth-network = { path = ".", features = ["test-utils"] } reth-provider = { workspace = true, features = ["test-utils"] } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true reth-transaction-pool = { workspace = true, features = ["test-utils"] } ethers-core = { workspace = true, default-features = false } diff --git a/crates/rpc/rpc-builder/Cargo.toml b/crates/rpc/rpc-builder/Cargo.toml index 477717c50..8b27c2cc4 100644 --- a/crates/rpc/rpc-builder/Cargo.toml +++ b/crates/rpc/rpc-builder/Cargo.toml @@ -40,7 +40,7 @@ thiserror.workspace = true tracing.workspace = true [dev-dependencies] -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true reth-rpc-api = { path = "../rpc-api", features = ["client"] } reth-transaction-pool = { workspace = true, features = ["test-utils"] } reth-provider = { workspace = true, features = ["test-utils"] } diff --git a/crates/storage/db/Cargo.toml b/crates/storage/db/Cargo.toml index 069c3737c..de96cc5b8 100644 --- a/crates/storage/db/Cargo.toml +++ b/crates/storage/db/Cargo.toml @@ -15,7 +15,7 @@ reth-interfaces.workspace = true reth-codecs = { path = "../codecs" } reth-libmdbx = { path = "../libmdbx-rs", optional = true, features = ["return-borrowed"] } reth-nippy-jar = { path = "../nippy-jar" } -reth-tracing = { path = "../../tracing" } +reth-tracing.workspace = true # codecs serde = { workspace = true, default-features = false }