mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
rpc tracing to workspace (#4986)
This commit is contained in:
@ -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"
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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" }
|
||||
|
||||
|
||||
@ -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"]
|
||||
|
||||
@ -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"]
|
||||
|
||||
@ -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"] }
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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 }
|
||||
|
||||
@ -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"] }
|
||||
|
||||
@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user