mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
24 lines
555 B
TOML
24 lines
555 B
TOML
[package]
|
|
name = "reth-p2p"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = "Utilities for interacting with ethereum's peer to peer network."
|
|
|
|
[dependencies]
|
|
enr = { git = "https://github.com/sigp/enr", features = ["serde", "rust-secp256k1"] }
|
|
serde = "1.0.145"
|
|
serde_derive = "1.0.145"
|
|
thiserror = "1.0.37"
|
|
toml = "0.5.9"
|
|
tracing = "0.1.36"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|
|
[dev-dependencies.secp256k1]
|
|
version = "0.24"
|
|
features = ["rand-std"]
|