chore: move paste to workspace deps (#7306)

This commit is contained in:
Matthias Seitz
2024-03-24 02:29:36 +01:00
committed by GitHub
parent dc4e2e2283
commit 7efd5b09d2
4 changed files with 7 additions and 6 deletions

View File

@ -45,15 +45,15 @@ itertools.workspace = true
# testing
rand = { workspace = true, optional = true }
paste = { version = "1.0", optional = true }
paste = { workspace = true, optional = true }
proptest = { workspace = true, optional = true }
[dev-dependencies]
reth-primitives = { workspace = true, features = ["arbitrary"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
paste = "1.0"
rand = "0.8"
paste.workspace = true
rand.workspace = true
proptest.workspace = true
criterion.workspace = true
pprof = { workspace = true, features = ["criterion", "flamegraph"] }