mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 03:42:46 +00:00
The `cargo-sort` job in CI is [failing](https://github.com/sigp/lighthouse/actions/runs/22781651620/job/66088700318?pr=8932) since [cargo-sort v2.1.1](https://github.com/DevinR528/cargo-sort/releases/tag/v2.1.1) has been released, which reports new errors for our Cargo.toml files. Ran `cargo-sort` formatter locally with the new version. Co-Authored-By: ackintosh <sora.akatsuki@gmail.com>
32 lines
995 B
TOML
32 lines
995 B
TOML
[package]
|
|
name = "account_manager"
|
|
version = { workspace = true }
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Luke Anderson <luke@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
account_utils = { workspace = true }
|
|
bls = { workspace = true }
|
|
clap = { workspace = true }
|
|
clap_utils = { workspace = true }
|
|
directory = { workspace = true }
|
|
environment = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
eth2_keystore = { workspace = true }
|
|
eth2_network_config = { workspace = true }
|
|
eth2_wallet = { workspace = true }
|
|
eth2_wallet_manager = { path = "../common/eth2_wallet_manager" }
|
|
filesystem = { workspace = true }
|
|
safe_arith = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
slashing_protection = { workspace = true }
|
|
slot_clock = { workspace = true }
|
|
tokio = { workspace = true }
|
|
types = { workspace = true }
|
|
validator_dir = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|