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",
|
"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",
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -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 _;
|
||||||
|
|||||||
Reference in New Issue
Block a user