mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
35 lines
781 B
TOML
35 lines
781 B
TOML
[package]
|
|
name = "reth-network-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Network interfaces and commonly used types"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-eth-wire.workspace = true
|
|
alloy-rpc-types-admin.workspace = true
|
|
reth-network-peers.workspace = true
|
|
|
|
# ethereum
|
|
alloy-primitives.workspace = true
|
|
|
|
# eth
|
|
enr = { workspace = true, default-features = false, features = ["rust-secp256k1"] }
|
|
|
|
# misc
|
|
thiserror.workspace = true
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
auto_impl.workspace = true
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|