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

@ -10,20 +10,20 @@ description = "Staged syncing primitives used in reth."
[dependencies]
# reth
reth-primitives = { workspace = true }
reth-interfaces = { workspace = true }
reth-primitives.workspace = true
reth-interfaces.workspace = true
reth-codecs = { path = "../codecs" }
reth-libmdbx = { path = "../libmdbx-rs", optional = true, features = ["return-borrowed"] }
reth-metrics = { workspace = true }
reth-metrics.workspace = true
# codecs
serde = { workspace = true, default-features = false }
postcard = { version = "1.0.2", features = ["alloc"] }
heapless = "0.7.16"
parity-scale-codec = { version = "3.2.1", features = ["bytes"] }
futures = { workspace = true }
tokio-stream = { workspace = true }
rand = { workspace = true }
futures.workspace = true
tokio-stream.workspace = true
rand.workspace = true
secp256k1 = { workspace = true, default-features = false, features = [
"alloc",
"recovery",
@ -34,7 +34,7 @@ modular-bitfield = "0.11.2"
# misc
bytes.workspace = true
page_size = "0.4.2"
thiserror = { workspace = true }
thiserror.workspace = true
tempfile = { version = "3.3.0", optional = true }
parking_lot = "0.12"
derive_more = "0.99"
@ -49,7 +49,7 @@ proptest-derive = { version = "0.3", optional = true }
# reth libs with arbitrary
reth-primitives = { workspace = true, features = ["arbitrary"] }
reth-codecs = { path = "../codecs", features = ["arbitrary"] }
reth-interfaces = { workspace = true }
reth-interfaces.workspace = true
tempfile = "3.3.0"
test-fuzz = "4"
@ -61,15 +61,15 @@ tokio = { workspace = true, features = ["full"] }
reth-db = { path = ".", features = ["test-utils", "bench"] }
# needed for test-fuzz to work properly, see https://github.com/paradigmxyz/reth/pull/177#discussion_r1021172198
secp256k1 = { workspace = true }
secp256k1.workspace = true
async-trait = { workspace = true }
async-trait.workspace = true
arbitrary = { version = "1.1.7", features = ["derive"] }
proptest = { version = "1.0" }
proptest-derive = "0.3"
serde_json = { workspace = true }
serde_json.workspace = true
paste = "1.0"