chore: simplify workspace = true usage (#3930)

This commit is contained in:
Matthias Seitz
2023-07-26 17:21:09 +02:00
committed by GitHub
parent caa26833a5
commit 8cdb097829
39 changed files with 274 additions and 274 deletions

View File

@ -9,18 +9,18 @@ repository.workspace = true
[dependencies]
reth-rlp = { workspace = true, features = ["derive", "ethereum-types", "std"] }
reth-primitives = { workspace = true }
reth-primitives.workspace = true
reth-net-common = { path = "../common" }
futures = { workspace = true }
thiserror = { workspace = true }
futures.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-stream = { workspace = true }
tokio-stream.workspace = true
tokio-util = { workspace = true, features = ["codec"] }
pin-project = { workspace = true }
pin-project.workspace = true
educe = "0.4.19"
tracing = { workspace = true }
tracing.workspace = true
# HeaderBytes
generic-array = "0.14.6"
@ -28,7 +28,7 @@ typenum = "1.15.0"
byteorder = "1.4.3"
# crypto
rand = { workspace = true }
rand.workspace = true
ctr = "0.9.2"
digest = "0.10.5"
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }