mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
[cargo-sort is currently failing on CI](https://github.com/sigp/lighthouse/actions/runs/15198128212/job/42746931918?pr=7025), likely due to new checks introduced in version [2.0.0](https://github.com/DevinR528/cargo-sort/releases/tag/v2.0.0). Fixed the errors by running cargo-sort with formatting enabled.
31 lines
755 B
TOML
31 lines
755 B
TOML
[package]
|
|
name = "eth2_network_config"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
discv5 = { workspace = true }
|
|
eth2_config = { workspace = true }
|
|
kzg = { workspace = true }
|
|
pretty_reqwest_error = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
tracing = { workspace = true }
|
|
types = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
eth2_config = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ethereum_ssz = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|