mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
90 lines
2.1 KiB
TOML
90 lines
2.1 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
|
|
|
|
revm.workspace = true
|
|
|
|
# alloy
|
|
alloy-rlp.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
|
|
# `metrics` feature
|
|
reth-metrics = { workspace = true, optional = true }
|
|
metrics = { workspace = true, optional = true }
|
|
|
|
# `test-utils` feature
|
|
triehash = { version = "0.8", optional = true }
|
|
|
|
# `serde` feature
|
|
serde = { workspace = true, optional = 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
|
|
revm-database.workspace = true
|
|
|
|
# trie
|
|
triehash = "0.8"
|
|
|
|
# misc
|
|
proptest.workspace = true
|
|
proptest-arbitrary-interop.workspace = true
|
|
serde_json.workspace = true
|
|
similar-asserts.workspace = true
|
|
|
|
[features]
|
|
metrics = ["reth-metrics", "reth-trie/metrics", "dep:metrics"]
|
|
serde = [
|
|
"dep:serde",
|
|
"similar-asserts/serde",
|
|
"revm/serde",
|
|
"alloy-consensus/serde",
|
|
"alloy-primitives/serde",
|
|
"reth-trie/serde",
|
|
"reth-trie-common/serde",
|
|
"reth-provider/serde",
|
|
"reth-primitives-traits/serde",
|
|
"revm-database/serde",
|
|
]
|
|
test-utils = [
|
|
"triehash",
|
|
"revm/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",
|
|
]
|