Files
reth/crates/config/Cargo.toml

47 lines
980 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
[lints]
workspace = true
[dependencies]
# reth
reth-network-types.workspace = true
reth-prune-types.workspace = true
reth-stages-types.workspace = true
reth-static-file-types.workspace = true
# serde
serde = { workspace = true, optional = true }
humantime-serde = { workspace = true, optional = true }
# toml
toml = { workspace = true, optional = true }
eyre.workspace = true
# value objects
url.workspace = true
[features]
serde = [
"dep:serde",
"dep:toml",
"dep:humantime-serde",
"reth-network-types/serde",
"reth-prune-types/serde",
"reth-stages-types/serde",
"alloy-primitives/serde",
"url/serde",
]
[dev-dependencies]
tempfile.workspace = true
reth-network-peers.workspace = true
alloy-primitives = { workspace = true, features = ["getrandom"] }