mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
46 lines
1007 B
TOML
46 lines
1007 B
TOML
[package]
|
|
name = "reth-discv5"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Ethereum peer discovery V5"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-metrics.workspace = true
|
|
reth-network-types.workspace = true
|
|
|
|
# ethereum
|
|
alloy-rlp.workspace = true
|
|
discv5 = { workspace = true, features = ["libp2p"] }
|
|
enr.workspace = true
|
|
multiaddr = { version = "0.18", default-features = false }
|
|
libp2p-identity = "0.2"
|
|
secp256k1.workspace = true
|
|
|
|
# async/futures
|
|
tokio.workspace = true
|
|
futures.workspace = true
|
|
|
|
# io
|
|
rand.workspace = true
|
|
|
|
# misc
|
|
derive_more.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
itertools.workspace = true
|
|
metrics.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-tracing.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
secp256k1 = { workspace = true, features = ["rand-std"] }
|