mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use workspace dependencies (#3132)
This commit is contained in:
@ -10,23 +10,23 @@ description = "reth payload builder"
|
||||
|
||||
[dependencies]
|
||||
## reth
|
||||
reth-primitives = { path = "../../primitives" }
|
||||
reth-rpc-types = { path = "../../rpc/rpc-types" }
|
||||
reth-rlp = { path = "../../rlp" }
|
||||
reth-interfaces = { path = "../../interfaces" }
|
||||
reth-primitives = { workspace = true }
|
||||
reth-rpc-types = { workspace = true }
|
||||
reth-rlp = { workspace = true }
|
||||
reth-interfaces = { workspace = true }
|
||||
reth-revm-primitives = { path = "../../revm/revm-primitives" }
|
||||
reth-metrics = { path = "../../metrics" }
|
||||
reth-metrics = { workspace = true }
|
||||
|
||||
## ethereum
|
||||
revm-primitives = { workspace = true }
|
||||
|
||||
## async
|
||||
tokio = { version = "1", features = ["sync"] }
|
||||
tokio-stream = "0.1"
|
||||
futures-util = "0.3"
|
||||
tokio = { workspace = true, features = ["sync"] }
|
||||
tokio-stream = { workspace = true }
|
||||
futures-util = { workspace = true }
|
||||
|
||||
## misc
|
||||
thiserror = "1.0"
|
||||
thiserror = { workspace = true }
|
||||
sha2 = { version = "0.10", default-features = false }
|
||||
tracing = { workspace = true }
|
||||
hashbrown = "0.13"
|
||||
|
||||
Reference in New Issue
Block a user