mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
91 lines
2.0 KiB
TOML
91 lines
2.0 KiB
TOML
[package]
|
|
name = "reth-trie"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Merkle trie implementation"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-execution-errors.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-stages-types.workspace = true
|
|
reth-storage-errors.workspace = true
|
|
reth-trie-sparse.workspace = true
|
|
reth-trie-common = { workspace = true, features = ["rayon"] }
|
|
|
|
revm.workspace = true
|
|
|
|
# alloy
|
|
alloy-eips.workspace = true
|
|
alloy-rlp.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-consensus.workspace = true
|
|
alloy-trie.workspace = true
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# misc
|
|
auto_impl.workspace = true
|
|
itertools.workspace = true
|
|
|
|
# `metrics` feature
|
|
reth-metrics = { workspace = true, optional = true }
|
|
metrics = { workspace = true, optional = true }
|
|
|
|
# `test-utils` feature
|
|
triehash = { version = "0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
# reth
|
|
reth-primitives-traits = { workspace = true, features = ["test-utils"] }
|
|
reth-ethereum-primitives = { workspace = true, features = ["arbitrary", "std"] }
|
|
reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
|
|
|
|
# trie
|
|
triehash = "0.8"
|
|
|
|
# misc
|
|
proptest.workspace = true
|
|
proptest-arbitrary-interop.workspace = true
|
|
serde_json.workspace = true
|
|
criterion.workspace = true
|
|
|
|
[features]
|
|
metrics = ["reth-metrics", "dep:metrics"]
|
|
serde = [
|
|
"alloy-primitives/serde",
|
|
"alloy-consensus/serde",
|
|
"alloy-trie/serde",
|
|
"alloy-eips/serde",
|
|
"revm/serde",
|
|
"reth-trie-common/serde",
|
|
"reth-primitives-traits/serde",
|
|
"reth-stages-types/serde",
|
|
]
|
|
test-utils = [
|
|
"triehash",
|
|
"revm/test-utils",
|
|
"reth-primitives-traits/test-utils",
|
|
"reth-trie-common/test-utils",
|
|
"reth-ethereum-primitives/test-utils",
|
|
"reth-trie-sparse/test-utils",
|
|
"reth-stages-types/test-utils",
|
|
]
|
|
|
|
[[bench]]
|
|
name = "hash_post_state"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "trie_root"
|
|
required-features = ["test-utils"]
|
|
harness = false
|