Skip to content

Commit

Permalink
chore: move paste to workspace deps (#7306)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Mar 24, 2024
1 parent dc4e2e2 commit 7efd5b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ nybbles = "0.2.1"
smallvec = "1"
dyn-clone = "1.0.17"
sha2 = { version = "0.10", default-features = false }
paste = "1.0"

# proc-macros
proc-macro2 = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/stages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ itertools.workspace = true
tokio = { workspace = true, features = ["rt", "sync", "macros"] }
assert_matches.workspace = true
rand.workspace = true
paste = "1.0"
paste.workspace = true

# Stage benchmarks
pprof = { workspace = true, features = ["flamegraph", "frame-pointer", "criterion"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/storage/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ thiserror.workspace = true
tempfile = { workspace = true, optional = true }
derive_more.workspace = true
eyre.workspace = true
paste = "1.0"
paste.workspace = true
rustc-hash = "1.1.0"

# arbitrary utils
Expand Down Expand Up @@ -66,7 +66,7 @@ arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive.workspace = true

paste = "1.0"
paste.workspace = true

assert_matches.workspace = true

Expand Down
6 changes: 3 additions & 3 deletions crates/transaction-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 7efd5b0

Please sign in to comment.