Skip to content

Commit

Permalink
fix(deps): Fix dev-deps for reth-primitives (paradigmxyz#12612)
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane authored Nov 18, 2024
1 parent cfd4523 commit 5056a08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/assets/check_wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ exclude_crates=(
reth-static-file # tokio
reth-transaction-pool # c-kzg
reth-trie-parallel # tokio
reth-testing-utils
)

# Array to hold the results
Expand Down
4 changes: 2 additions & 2 deletions crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }

[dev-dependencies]
# eth
reth-chainspec.workspace = true
reth-chainspec = { workspace = true, features = ["arbitrary"] }
reth-codecs = { workspace = true, features = ["test-utils"] }
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
reth-testing-utils.workspace = true
reth-trie-common.workspace = true
reth-trie-common = { workspace = true, features = ["arbitrary"] }
revm-primitives = { workspace = true, features = ["arbitrary"] }

alloy-eips = { workspace = true, features = ["arbitrary"] }
Expand Down
2 changes: 1 addition & 1 deletion testing/testing-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
workspace = true

[dependencies]
reth-primitives = { workspace = true, features = ["secp256k1"] }
reth-primitives = { workspace = true, features = ["secp256k1", "arbitrary"] }

alloy-genesis.workspace = true
alloy-primitives.workspace = true
Expand Down

0 comments on commit 5056a08

Please sign in to comment.