dcd69dfc62
## Issue Addressed Synchronize dependencies and edition on the workspace `Cargo.toml` ## Proposed Changes with https://github.com/rust-lang/cargo/issues/8415 merged it's now possible to synchronize details on the workspace `Cargo.toml` like the metadata and dependencies. By only having dependencies that are shared between multiple crates aligned on the workspace `Cargo.toml` it's easier to not miss duplicate versions of the same dependency and therefore ease on the compile times. ## Additional Info this PR also removes the no longer required direct dependency of the `serde_derive` crate. should be reviewed after https://github.com/sigp/lighthouse/pull/4639 get's merged. closes https://github.com/sigp/lighthouse/issues/4651 Co-authored-by: Michael Sproul <michael@sigmaprime.io> Co-authored-by: Michael Sproul <micsproul@gmail.com>
66 lines
1.9 KiB
TOML
66 lines
1.9 KiB
TOML
[package]
|
|
name = "lighthouse_network"
|
|
version = "0.2.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
discv5 = { workspace = true }
|
|
unsigned-varint = { version = "0.6", features = ["codec"] }
|
|
ssz_types = { workspace = true }
|
|
types = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_derive = "1"
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
tree_hash_derive = { workspace = true }
|
|
slog = { workspace = true }
|
|
lighthouse_version = { workspace = true }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
error-chain = { workspace = true }
|
|
dirs = { workspace = true }
|
|
fnv = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
lighthouse_metrics = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
tokio-io-timeout = "1"
|
|
lru = { workspace = true }
|
|
lru_cache = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
snap = { workspace = true }
|
|
hex = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
tiny-keccak = "2"
|
|
task_executor = { workspace = true }
|
|
rand = { workspace = true }
|
|
directory = { workspace = true }
|
|
regex = { workspace = true }
|
|
strum = { workspace = true }
|
|
superstruct = { workspace = true }
|
|
prometheus-client = "0.21.0"
|
|
unused_port = { workspace = true }
|
|
delay_map = { workspace = true }
|
|
void = "1"
|
|
libp2p-quic= { version = "0.9.2", features=["tokio"]}
|
|
libp2p-mplex = "0.40.0"
|
|
|
|
[dependencies.libp2p]
|
|
version = "0.52"
|
|
default-features = false
|
|
features = ["identify", "yamux", "noise", "gossipsub", "dns", "tcp", "tokio", "plaintext", "secp256k1", "macros", "ecdsa"]
|
|
|
|
[dev-dependencies]
|
|
slog-term = { workspace = true }
|
|
slog-async = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
exit-future = { workspace = true }
|
|
quickcheck = { workspace = true }
|
|
quickcheck_macros = { workspace = true }
|
|
|
|
[features]
|
|
libp2p-websocket = []
|
|
|