mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
29 lines
639 B
TOML
29 lines
639 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"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-eth-wire = { path = "../eth-wire" }
|
|
reth-rpc-types.workspace = true
|
|
reth-discv4 = { path = "../discv4" }
|
|
|
|
# io
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
# misc
|
|
async-trait.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
[features]
|
|
default = ["serde"]
|
|
serde = ["dep:serde"]
|