mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
56 lines
1.5 KiB
TOML
56 lines
1.5 KiB
TOML
[package]
|
|
name = "reth-trie-common"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Commonly used types for trie usage in reth."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
reth-primitives-traits.workspace = true
|
|
reth-codecs.workspace = true
|
|
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp = { workspace = true, features = ["arrayvec"] }
|
|
alloy-trie = { workspace = true, features = ["serde"] }
|
|
alloy-consensus.workspace = true
|
|
alloy-genesis.workspace = true
|
|
revm-primitives.workspace = true
|
|
|
|
bytes.workspace = true
|
|
derive_more.workspace = true
|
|
serde.workspace = true
|
|
itertools.workspace = true
|
|
nybbles = { workspace = true, features = ["serde", "rlp"] }
|
|
|
|
# `test-utils` feature
|
|
hash-db = { version = "~0.15", optional = true }
|
|
plain_hasher = { version = "0.2", optional = true }
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
proptest = { workspace = true, optional = true }
|
|
proptest-derive = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
|
assert_matches.workspace = true
|
|
proptest.workspace = true
|
|
proptest-derive.workspace = true
|
|
serde_json.workspace = true
|
|
test-fuzz.workspace = true
|
|
toml.workspace = true
|
|
hash-db = "~0.15"
|
|
plain_hasher = "0.2"
|
|
|
|
[features]
|
|
test-utils = ["dep:plain_hasher", "dep:hash-db", "arbitrary"]
|
|
arbitrary = [
|
|
"alloy-trie/arbitrary",
|
|
"dep:arbitrary",
|
|
"dep:proptest",
|
|
"dep:proptest-derive",
|
|
] |