Files
reth/crates/trie/db/Cargo.toml
2025-03-31 19:00:07 +00:00

72 lines
1.7 KiB
TOML

[package]
name = "reth-trie-db"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Database integration with merkle trie implementation"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives-traits.workspace = true
reth-execution-errors.workspace = true
reth-db-api.workspace = true
reth-trie.workspace = true
# alloy
alloy-primitives.workspace = true
# tracing
tracing.workspace = true
[dev-dependencies]
# reth
reth-chainspec.workspace = true
reth-primitives-traits = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-db = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-storage-errors.workspace = true
reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-trie = { workspace = true, features = ["test-utils"] }
alloy-consensus.workspace = true
alloy-rlp.workspace = true
revm.workspace = true
revm-database.workspace = true
# trie
triehash.workspace = true
# misc
proptest.workspace = true
proptest-arbitrary-interop.workspace = true
serde_json.workspace = true
similar-asserts.workspace = true
[features]
metrics = ["reth-trie/metrics"]
serde = [
"similar-asserts/serde",
"alloy-consensus/serde",
"alloy-primitives/serde",
"reth-trie/serde",
"reth-trie-common/serde",
"reth-primitives-traits/serde",
"revm-database/serde",
"revm/serde",
]
test-utils = [
"reth-trie-common/test-utils",
"reth-primitives-traits/test-utils",
"reth-chainspec/test-utils",
"reth-db/test-utils",
"reth-db-api/test-utils",
"reth-provider/test-utils",
"reth-trie/test-utils",
]