Files
nanoreth/crates/blockchain-tree/Cargo.toml
2023-08-18 14:57:28 +00:00

48 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 = { path = "../storage/db" }
reth-provider.workspace = true
reth-stages = { path = "../stages" }
# common
parking_lot.workspace = true
lru = "0.10"
tracing.workspace = true
# metrics
reth-metrics = { workspace = true, features = ["common"] }
metrics = "0.21.1" # Needed for `metrics-macro` to resolve the crate using `::metrics` notation
# misc
aquamarine = "0.3.0"
linked_hash_set = "0.1.4"
[dev-dependencies]
reth-db = { path = "../storage/db", features = ["test-utils"] }
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-primitives = { workspace = true , features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
parking_lot.workspace = true
assert_matches = "1.5"
tokio = { workspace = true, features = ["macros", "sync"] }
[features]
test-utils = []