Files
nanoreth/crates/net/network-api/Cargo.toml
clabby 52670a8b24 feat: op-reth (#4377)
Co-authored-by: Roberto Bayardo <bayardo@alum.mit.edu>
Co-authored-by: refcell.eth <abigger87@gmail.com>
Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com>
Co-authored-by: refcell <refcell@oplabs.co>
Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>
2023-11-05 17:33:42 +00:00

30 lines
653 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"]
optimism = []