rpc tracing to workspace (#4986)

This commit is contained in:
Supernovahs.eth
2023-10-11 21:49:06 +05:30
committed by GitHub
parent b076a01933
commit a2c62cdf61
11 changed files with 11 additions and 10 deletions

View File

@ -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"

View File

@ -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

View File

@ -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" }

View File

@ -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"]

View File

@ -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"]

View File

@ -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"] }

View File

@ -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"

View File

@ -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]

View File

@ -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 }

View File

@ -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"] }

View File

@ -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 }