chore: use workspace dependencies (#3132)

This commit is contained in:
Waylon Jepsen
2023-06-13 16:46:26 -06:00
committed by GitHub
parent fe40a92f06
commit ea2fcee995
42 changed files with 383 additions and 354 deletions

View File

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