chore: rm unused dep and add required (#13569)

This commit is contained in:
Matthias Seitz
2024-12-27 20:01:24 +01:00
committed by GitHub
parent bc8d4fed1e
commit 55a972d94d
3 changed files with 6 additions and 2 deletions

1
Cargo.lock generated
View File

@ -8569,6 +8569,7 @@ dependencies = [
"bytes", "bytes",
"derive_more", "derive_more",
"modular-bitfield", "modular-bitfield",
"once_cell",
"op-alloy-consensus", "op-alloy-consensus",
"proptest", "proptest",
"proptest-arbitrary-interop", "proptest-arbitrary-interop",

View File

@ -36,6 +36,7 @@ serde = { workspace = true, optional = true }
# misc # misc
derive_more = { workspace = true, features = ["deref", "from", "into", "constructor"] } derive_more = { workspace = true, features = ["deref", "from", "into", "constructor"] }
once_cell.workspace = true
rand = { workspace = true, optional = true } rand = { workspace = true, optional = true }
# test # test
@ -65,12 +66,12 @@ std = [
"secp256k1?/std", "secp256k1?/std",
"alloy-rlp/std", "alloy-rlp/std",
"reth-zstd-compressors?/std", "reth-zstd-compressors?/std",
"op-alloy-consensus/std" "op-alloy-consensus/std",
"once_cell/std"
] ]
reth-codec = [ reth-codec = [
"dep:reth-codecs", "dep:reth-codecs",
"std", "std",
"rand",
"dep:proptest", "dep:proptest",
"dep:arbitrary", "dep:arbitrary",
"reth-primitives/reth-codec", "reth-primitives/reth-codec",

View File

@ -38,3 +38,5 @@ impl reth_primitives::NodePrimitives for OpPrimitives {
type SignedTx = OpTransactionSigned; type SignedTx = OpTransactionSigned;
type Receipt = OpReceipt; type Receipt = OpReceipt;
} }
use once_cell as _;