Files
reth/crates/config/Cargo.toml
Alexey Shekhirin d3465e2e32 feat(stages, storage): pruning configuration (#3341)
Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com>
2023-06-29 15:04:43 +00:00

28 lines
678 B
TOML

[package]
name = "reth-config"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
# reth
reth-network = { path = "../net/network" }
reth-net-nat = { path = "../net/nat" }
reth-discv4 = { path = "../net/discv4" }
reth-downloaders = { path = "../net/downloaders" }
reth-stages = { path = "../../crates/stages" }
reth-primitives = { path = "../primitives" }
# io
serde = { workspace = true }
serde_json = { workspace = true }
# crypto
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
confy = "0.5"
tempfile = "3.4"