Files
nanoreth/crates/net/peers/Cargo.toml
2024-12-23 10:46:35 +01:00

51 lines
1.2 KiB
TOML

[package]
name = "reth-network-peers"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Network peer types and utils"
[lints]
workspace = true
[dependencies]
# eth
alloy-primitives = { workspace = true, features = ["rlp"] }
alloy-rlp = { workspace = true, features = ["derive", "core-net", "core-error"] }
enr = { workspace = true, optional = true }
# crypto
secp256k1 = { workspace = true, optional = true }
# misc
serde_with.workspace = true
thiserror.workspace = true
url.workspace = true
tokio = { workspace = true, optional = true }
[dev-dependencies]
alloy-primitives = { workspace = true, features = ["rand"] }
rand.workspace = true
secp256k1 = { workspace = true, features = ["rand"] }
serde_json.workspace = true
enr.workspace = true
tokio = { workspace = true, features = ["net", "macros", "rt"] }
[features]
default = ["std"]
std = [
"alloy-primitives/std",
"alloy-rlp/std",
"secp256k1?/std",
"serde_with/std",
"thiserror/std",
"url/std",
"serde_json/std"
]
secp256k1 = ["dep:secp256k1", "enr/secp256k1"]
net = ["std", "dep:tokio", "tokio?/net"]