Skip to content

Commit 36a2b63

Browse files
authored
resort accidentally shuffled deps (#87)
1 parent 26ecef6 commit 36a2b63

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

Cargo.toml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ resolver = "2"
1818
[workspace.package]
1919
edition = "2021"
2020

21+
# NOTE: The block below is currently not sorted by `cargo sort`. Please keep sorted manually, especially during merges!
2122
[workspace.dependencies]
2223
async-channel = "1.9"
2324
axum = "0.7.7"
@@ -26,18 +27,6 @@ clap = { version = "4.5.15", features = ["derive", "wrap_help"] }
2627
client = { path = "anchor/client" }
2728
dashmap = "6.1.0"
2829
database = { path = "anchor/database" }
29-
network = { path = "anchor/network" }
30-
version = { path = "anchor/common/version" }
31-
processor = { path = "anchor/processor" }
32-
ssv_types = { path = "anchor/common/ssv_types" }
33-
lighthouse_network = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
34-
task_executor = { git = "https://github.com/sigp/lighthouse", branch = "unstable", default-features = false, features = [ "tracing", ] }
35-
metrics = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
36-
validator_metrics = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
37-
sensitive_url = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
38-
slot_clock = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
39-
unused_port = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
40-
types = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
4130
derive_more = { version = "1.0.0", features = ["full"] }
4231
dirs = "5.0.1"
4332
discv5 = "0.9.0"
@@ -47,13 +36,21 @@ health_metrics = { git = "https://github.com/sigp/lighthouse", branch = "anchor"
4736
http_api = { path = "anchor/http_api" }
4837
http_metrics = { path = "anchor/http_metrics" }
4938
hyper = "1.4"
39+
lighthouse_network = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
40+
metrics = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
41+
network = { path = "anchor/network" }
5042
num_cpus = "1"
5143
openssl = "0.10.68"
5244
parking_lot = "0.12"
45+
processor = { path = "anchor/processor" }
5346
qbft = { path = "anchor/common/qbft" }
5447
rusqlite = "0.28.0"
48+
sensitive_url = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
5549
serde = { version = "1.0.208", features = ["derive"] }
50+
slot_clock = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
51+
ssv_types = { path = "anchor/common/ssv_types" }
5652
strum = { version = "0.24", features = ["derive"] }
53+
task_executor = { git = "https://github.com/sigp/lighthouse", branch = "unstable", default-features = false, features = [ "tracing", ] }
5754
tokio = { version = "1.39.2", features = [
5855
"rt",
5956
"rt-multi-thread",
@@ -64,6 +61,10 @@ tokio = { version = "1.39.2", features = [
6461
tower-http = { version = "0.6", features = ["cors"] }
6562
tracing = "0.1.40"
6663
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
64+
types = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
65+
unused_port = { git = "https://github.com/sigp/lighthouse", branch = "unstable" }
66+
validator_metrics = { git = "https://github.com/agemanning/lighthouse", branch = "modularize-vc" }
67+
version = { path = "anchor/common/version" }
6768

6869
[profile.maxperf]
6970
inherits = "release"

0 commit comments

Comments
 (0)