mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
38 lines
738 B
TOML
38 lines
738 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
|
|
"""
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-db.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-interfaces.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
itertools.workspace = true
|
|
rayon.workspace = true
|
|
|
|
[dev-dependencies]
|
|
# reth
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-stages = { path = "../stages", features = ["test-utils"] }
|
|
|
|
# misc
|
|
|
|
assert_matches = "1.5.0"
|