mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* Starting to modularize the VC * Revert changes to eth2 * More progress * More progress * Compiles * Merge latest unstable and make it compile * Fix some lints * Tests compile * Merge latest unstable * Remove unnecessary deps * Merge latest unstable * Correct release tests * Merge latest unstable * Merge remote-tracking branch 'origin/unstable' into modularize-vc * Merge branch 'unstable' into modularize-vc * Revert unnecessary cargo lock changes * Update validator_client/beacon_node_fallback/Cargo.toml * Update validator_client/http_metrics/Cargo.toml * Update validator_client/http_metrics/src/lib.rs * Update validator_client/initialized_validators/Cargo.toml * Update validator_client/signing_method/Cargo.toml * Update validator_client/validator_metrics/Cargo.toml * Update validator_client/validator_services/Cargo.toml * Update validator_client/validator_store/Cargo.toml * Update validator_client/validator_store/src/lib.rs * Merge remote-tracking branch 'origin/unstable' into modularize-vc * Fix format string * Rename doppelganger trait * Don't drop the tempdir * Cargo fmt
29 lines
822 B
TOML
29 lines
822 B
TOML
[package]
|
|
name = "validator_manager"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
types = { workspace = true }
|
|
environment = { workspace = true }
|
|
eth2_network_config = { workspace = true }
|
|
clap_utils = { workspace = true }
|
|
eth2_wallet = { workspace = true }
|
|
account_utils = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
tokio = { workspace = true }
|
|
derivative = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
regex = { workspace = true }
|
|
validator_http_api = { workspace = true }
|