mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 09:16:00 +00:00
update cargo-sort (#8933)
Co-Authored-By: Tan Chee Keong <tanck@sigmaprime.io>
This commit is contained in:
30
Cargo.toml
30
Cargo.toml
@@ -166,20 +166,7 @@ initialized_validators = { path = "validator_client/initialized_validators" }
|
|||||||
int_to_bytes = { path = "consensus/int_to_bytes" }
|
int_to_bytes = { path = "consensus/int_to_bytes" }
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
kzg = { path = "crypto/kzg" }
|
kzg = { path = "crypto/kzg" }
|
||||||
libp2p = { git = "https://github.com/libp2p/rust-libp2p.git", default-features = false, features = [
|
libp2p = { git = "https://github.com/libp2p/rust-libp2p.git", default-features = false, features = ["identify", "yamux", "noise", "dns", "tcp", "tokio", "secp256k1", "macros", "metrics", "quic", "upnp", "gossipsub"] }
|
||||||
"identify",
|
|
||||||
"yamux",
|
|
||||||
"noise",
|
|
||||||
"dns",
|
|
||||||
"tcp",
|
|
||||||
"tokio",
|
|
||||||
"secp256k1",
|
|
||||||
"macros",
|
|
||||||
"metrics",
|
|
||||||
"quic",
|
|
||||||
"upnp",
|
|
||||||
"gossipsub",
|
|
||||||
] }
|
|
||||||
libsecp256k1 = "0.7"
|
libsecp256k1 = "0.7"
|
||||||
lighthouse_network = { path = "beacon_node/lighthouse_network" }
|
lighthouse_network = { path = "beacon_node/lighthouse_network" }
|
||||||
lighthouse_validator_store = { path = "validator_client/lighthouse_validator_store" }
|
lighthouse_validator_store = { path = "validator_client/lighthouse_validator_store" }
|
||||||
@@ -219,13 +206,7 @@ r2d2 = "0.8"
|
|||||||
rand = "0.9.0"
|
rand = "0.9.0"
|
||||||
rayon = "1.7"
|
rayon = "1.7"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
reqwest = { version = "0.12", default-features = false, features = [
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "stream", "rustls-tls", "native-tls-vendored"] }
|
||||||
"blocking",
|
|
||||||
"json",
|
|
||||||
"stream",
|
|
||||||
"rustls-tls",
|
|
||||||
"native-tls-vendored",
|
|
||||||
] }
|
|
||||||
ring = "0.17"
|
ring = "0.17"
|
||||||
rpds = "0.11"
|
rpds = "0.11"
|
||||||
rusqlite = { version = "0.28", features = ["bundled"] }
|
rusqlite = { version = "0.28", features = ["bundled"] }
|
||||||
@@ -254,12 +235,7 @@ sysinfo = "0.26"
|
|||||||
system_health = { path = "common/system_health" }
|
system_health = { path = "common/system_health" }
|
||||||
task_executor = { path = "common/task_executor" }
|
task_executor = { path = "common/task_executor" }
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
tokio = { version = "1", features = [
|
tokio = { version = "1", features = ["rt-multi-thread", "sync", "signal", "macros"] }
|
||||||
"rt-multi-thread",
|
|
||||||
"sync",
|
|
||||||
"signal",
|
|
||||||
"macros",
|
|
||||||
] }
|
|
||||||
tokio-stream = { version = "0.1", features = ["sync"] }
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
||||||
tokio-util = { version = "0.7", features = ["codec", "compat", "time"] }
|
tokio-util = { version = "0.7", features = ["codec", "compat", "time"] }
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ logroller = { workspace = true }
|
|||||||
metrics = { workspace = true }
|
metrics = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
tokio = { workspace = true, features = [ "time" ] }
|
tokio = { workspace = true, features = ["time"] }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
tracing-appender = { workspace = true }
|
tracing-appender = { workspace = true }
|
||||||
tracing-core = { workspace = true }
|
tracing-core = { workspace = true }
|
||||||
|
|||||||
@@ -35,7 +35,4 @@ tikv-jemallocator = { version = "0.6.0", optional = true, features = ["stats"] }
|
|||||||
|
|
||||||
# Jemalloc's background_threads feature requires Linux (pthreads).
|
# Jemalloc's background_threads feature requires Linux (pthreads).
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
tikv-jemallocator = { version = "0.6.0", optional = true, features = [
|
tikv-jemallocator = { version = "0.6.0", optional = true, features = ["stats", "background_threads"] }
|
||||||
"stats",
|
|
||||||
"background_threads",
|
|
||||||
] }
|
|
||||||
|
|||||||
Reference in New Issue
Block a user