Files
reth/examples/bsc-p2p/Cargo.toml
Luca Provini bffdda4312 Stateful overridable handshake (#14567)
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-02-28 13:17:41 +00:00

49 lines
1.2 KiB
TOML

[package]
name = "example-bsc-p2p"
version = "0.0.0"
publish = false
edition.workspace = true
license.workspace = true
[dependencies]
# reth
reth-chainspec.workspace = true
reth-discv4 = { workspace = true, features = ["test-utils"] }
reth-ethereum-forks = { workspace = true, features = ["serde"] }
reth-eth-wire.workspace = true
reth-eth-wire-types.workspace = true
reth-network = { workspace = true, features = ["test-utils"] }
reth-network-api.workspace = true
reth-network-peers.workspace = true
reth-primitives.workspace = true
reth-provider.workspace = true
reth-tracing.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-rlp.workspace = true
# misc
bytes.workspace = true
derive_more.workspace = true
futures.workspace = true
secp256k1 = { workspace = true, features = ["global-context", "std", "recovery"] }
serde = { workspace = true, features = ["derive"], optional = true }
serde_json.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tracing.workspace = true
[features]
default = ["serde"]
serde = [
"dep:serde",
"alloy-primitives/serde",
"reth-eth-wire/serde",
"reth-eth-wire-types/serde",
"reth-ethereum-forks/serde",
"reth-provider/serde",
"secp256k1/serde",
"bytes/serde",
]