Files
reth/crates/trie/sparse-parallel/Cargo.toml
2026-01-30 18:34:15 +00:00

72 lines
1.7 KiB
TOML

[package]
name = "reth-trie-sparse-parallel"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Parallel Sparse MPT implementation"
[lints]
workspace = true
[dependencies]
# reth
reth-execution-errors.workspace = true
reth-trie-common.workspace = true
reth-trie-sparse.workspace = true
tracing = { workspace = true, features = ["attributes"] }
alloy-trie.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-rlp.workspace = true
# metrics
reth-metrics = { workspace = true, optional = true }
metrics = { workspace = true, optional = true }
# misc
rayon = { workspace = true, optional = true }
smallvec.workspace = true
[dev-dependencies]
# reth
reth-primitives-traits.workspace = true
reth-provider = { workspace = true, features = ["test-utils"] }
reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-trie-db.workspace = true
reth-trie-sparse = { workspace = true, features = ["test-utils"] }
reth-trie.workspace = true
reth-tracing.workspace = true
# misc
arbitrary.workspace = true
assert_matches.workspace = true
itertools.workspace = true
pretty_assertions.workspace = true
proptest-arbitrary-interop.workspace = true
proptest.workspace = true
rand.workspace = true
rand_08.workspace = true
[features]
default = ["std", "metrics"]
std = [
"dep:rayon",
"alloy-primitives/std",
"alloy-rlp/std",
"alloy-trie/std",
"reth-execution-errors/std",
"reth-primitives-traits/std",
"reth-trie-common/std",
"reth-trie-sparse/std",
"tracing/std",
]
metrics = [
"dep:reth-metrics",
"dep:metrics",
"std",
]