mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: rm unused dep and add required (#13569)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -8569,6 +8569,7 @@ dependencies = [
|
||||
"bytes",
|
||||
"derive_more",
|
||||
"modular-bitfield",
|
||||
"once_cell",
|
||||
"op-alloy-consensus",
|
||||
"proptest",
|
||||
"proptest-arbitrary-interop",
|
||||
|
||||
@ -36,6 +36,7 @@ serde = { workspace = true, optional = true }
|
||||
|
||||
# misc
|
||||
derive_more = { workspace = true, features = ["deref", "from", "into", "constructor"] }
|
||||
once_cell.workspace = true
|
||||
rand = { workspace = true, optional = true }
|
||||
|
||||
# test
|
||||
@ -65,12 +66,12 @@ std = [
|
||||
"secp256k1?/std",
|
||||
"alloy-rlp/std",
|
||||
"reth-zstd-compressors?/std",
|
||||
"op-alloy-consensus/std"
|
||||
"op-alloy-consensus/std",
|
||||
"once_cell/std"
|
||||
]
|
||||
reth-codec = [
|
||||
"dep:reth-codecs",
|
||||
"std",
|
||||
"rand",
|
||||
"dep:proptest",
|
||||
"dep:arbitrary",
|
||||
"reth-primitives/reth-codec",
|
||||
|
||||
@ -38,3 +38,5 @@ impl reth_primitives::NodePrimitives for OpPrimitives {
|
||||
type SignedTx = OpTransactionSigned;
|
||||
type Receipt = OpReceipt;
|
||||
}
|
||||
|
||||
use once_cell as _;
|
||||
|
||||
Reference in New Issue
Block a user