mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
31 lines
723 B
TOML
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 |