Files
nanoreth/crates/config/Cargo.toml
2023-09-08 13:48:14 +00:00

31 lines
723 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"] }
# misc
confy.workspace = true
tempfile = "3.4"
[dev-dependencies]
toml.workspace = true