mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: fix cargo feature warning (#11900)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
This commit is contained in:
@ -101,7 +101,7 @@ tempfile.workspace = true
|
|||||||
[features]
|
[features]
|
||||||
default = ["jemalloc"]
|
default = ["jemalloc"]
|
||||||
|
|
||||||
dev = ["reth-cli-commands/dev"]
|
dev = ["reth-cli-commands/arbitrary"]
|
||||||
|
|
||||||
asm-keccak = [
|
asm-keccak = [
|
||||||
"reth-node-core/asm-keccak",
|
"reth-node-core/asm-keccak",
|
||||||
|
|||||||
@ -88,10 +88,15 @@ reth-discv4.workspace = true
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
dev = [
|
arbitrary = [
|
||||||
"dep:proptest",
|
"dep:proptest",
|
||||||
"dep:arbitrary",
|
"dep:arbitrary",
|
||||||
"dep:proptest-arbitrary-interop",
|
"dep:proptest-arbitrary-interop",
|
||||||
"reth-primitives/arbitrary",
|
"reth-primitives/arbitrary",
|
||||||
"reth-db-api/arbitrary",
|
"reth-db-api/arbitrary",
|
||||||
|
"reth-eth-wire/arbitrary",
|
||||||
|
"reth-db/arbitrary",
|
||||||
|
"reth-chainspec/arbitrary",
|
||||||
|
"alloy-eips/arbitrary",
|
||||||
|
"alloy-primitives/arbitrary",
|
||||||
]
|
]
|
||||||
|
|||||||
@ -20,7 +20,7 @@ pub mod p2p;
|
|||||||
pub mod prune;
|
pub mod prune;
|
||||||
pub mod recover;
|
pub mod recover;
|
||||||
pub mod stage;
|
pub mod stage;
|
||||||
#[cfg(feature = "dev")]
|
#[cfg(feature = "arbitrary")]
|
||||||
pub mod test_vectors;
|
pub mod test_vectors;
|
||||||
|
|
||||||
pub use node::NodeCommand;
|
pub use node::NodeCommand;
|
||||||
|
|||||||
Reference in New Issue
Block a user