Files
nanoreth/crates/prune/Cargo.toml
2024-04-18 17:15:28 +00:00

45 lines
937 B
TOML

[package]
name = "reth-prune"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Pruning implementation"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives.workspace = true
reth-db.workspace = true
reth-provider.workspace = true
reth-interfaces.workspace = true
reth-tokio-util.workspace = true
reth-config.workspace = true
# metrics
reth-metrics.workspace = true
metrics.workspace = true
# misc
tracing.workspace = true
thiserror.workspace = true
itertools.workspace = true
rayon.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
[dev-dependencies]
# reth
reth-db = { workspace = true, features = ["test-utils"] }
reth-stages = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
# misc
derive_more.workspace = true
assert_matches.workspace = true