2023-08-08 00:03:22 +00:00
|
|
|
[package]
|
|
|
|
name = "validator_manager"
|
|
|
|
version = "0.1.0"
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2023-08-08 00:03:22 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
bls = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
environment = { workspace = true }
|
|
|
|
eth2_network_config = { workspace = true }
|
|
|
|
clap_utils = { workspace = true }
|
|
|
|
eth2_wallet = { workspace = true }
|
|
|
|
eth2_keystore = { 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 }
|
2023-08-08 00:03:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
tempfile = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
validator_client = { workspace = true }
|