mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "reth-blockchain-tree"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
normal = [
|
|
# Used for diagrams in docs
|
|
"aquamarine",
|
|
]
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-db.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-stages.workspace = true
|
|
|
|
# common
|
|
parking_lot.workspace = true
|
|
lru = "0.11"
|
|
tracing.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "sync"] }
|
|
|
|
# metrics
|
|
reth-metrics = { workspace = true, features = ["common"] }
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
aquamarine.workspace = true
|
|
linked_hash_set = "0.1.4"
|
|
|
|
[dev-dependencies]
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
reth-primitives = { workspace = true , features = ["test-utils"] }
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-revm.workspace = true
|
|
parking_lot.workspace = true
|
|
assert_matches.workspace = true
|
|
|
|
[features]
|
|
test-utils = []
|
|
optimism = ["reth-primitives/optimism", "reth-interfaces/optimism", "reth-provider/optimism", "reth-revm/optimism"]
|