-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce alphabetically ordered cargo deps (#6678)
* Enforce alphabetically ordered cargo deps * Fix test-suite * Another CI fix * Merge branch 'unstable' into cargo-sort * Fix conflicts * Merge remote-tracking branch 'origin/unstable' into cargo-sort
- Loading branch information
Showing
77 changed files
with
609 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ edition = { workspace = true } | |
authors = ["Sean Anderson <[email protected]>"] | ||
|
||
[dependencies] | ||
eth2 = { workspace = true } | ||
lighthouse_version = { workspace = true } | ||
reqwest = { workspace = true } | ||
sensitive_url = { workspace = true } | ||
eth2 = { workspace = true } | ||
serde = { workspace = true } | ||
lighthouse_version = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,41 +5,41 @@ authors = ["Sigma Prime <[email protected]>"] | |
edition = { workspace = true } | ||
|
||
[dev-dependencies] | ||
operation_pool = { workspace = true } | ||
serde_yaml = { workspace = true } | ||
state_processing = { workspace = true } | ||
operation_pool = { workspace = true } | ||
tokio = { workspace = true } | ||
|
||
[dependencies] | ||
beacon_chain = { workspace = true } | ||
store = { workspace = true } | ||
network = { workspace = true } | ||
timer = { path = "../timer" } | ||
lighthouse_network = { workspace = true } | ||
types = { workspace = true } | ||
eth2_config = { workspace = true } | ||
slot_clock = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
slog = { workspace = true } | ||
tokio = { workspace = true } | ||
futures = { workspace = true } | ||
beacon_processor = { workspace = true } | ||
directory = { workspace = true } | ||
dirs = { workspace = true } | ||
environment = { workspace = true } | ||
eth1 = { workspace = true } | ||
eth2 = { workspace = true } | ||
kzg = { workspace = true } | ||
sensitive_url = { workspace = true } | ||
eth2_config = { workspace = true } | ||
ethereum_ssz = { workspace = true } | ||
execution_layer = { workspace = true } | ||
futures = { workspace = true } | ||
genesis = { workspace = true } | ||
task_executor = { workspace = true } | ||
environment = { workspace = true } | ||
metrics = { workspace = true } | ||
time = "0.3.5" | ||
directory = { workspace = true } | ||
http_api = { workspace = true } | ||
http_metrics = { path = "../http_metrics" } | ||
kzg = { workspace = true } | ||
lighthouse_network = { workspace = true } | ||
metrics = { workspace = true } | ||
monitoring_api = { workspace = true } | ||
network = { workspace = true } | ||
sensitive_url = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
slasher = { workspace = true } | ||
slasher_service = { path = "../../slasher/service" } | ||
monitoring_api = { workspace = true } | ||
execution_layer = { workspace = true } | ||
beacon_processor = { workspace = true } | ||
ethereum_ssz = { workspace = true } | ||
slog = { workspace = true } | ||
slot_clock = { workspace = true } | ||
store = { workspace = true } | ||
task_executor = { workspace = true } | ||
time = "0.3.5" | ||
timer = { path = "../timer" } | ||
tokio = { workspace = true } | ||
types = { workspace = true } |
Oops, something went wrong.