2019-03-20 05:24:28 +00:00
|
|
|
[package]
|
|
|
|
name = "account_manager"
|
2020-11-18 00:44:28 +00:00
|
|
|
version = "0.3.5"
|
2019-11-25 04:48:24 +00:00
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Luke Anderson <luke@sigmaprime.io>"]
|
2022-02-25 00:10:17 +00:00
|
|
|
edition = "2021"
|
2019-03-20 05:24:28 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-05-18 11:24:23 +00:00
|
|
|
bls = { path = "../crypto/bls" }
|
2020-10-05 08:22:19 +00:00
|
|
|
clap = "2.33.3"
|
2020-05-18 11:24:23 +00:00
|
|
|
types = { path = "../consensus/types" }
|
2019-11-22 00:35:41 +00:00
|
|
|
environment = { path = "../lighthouse/environment" }
|
2020-12-08 05:41:10 +00:00
|
|
|
eth2_network_config = { path = "../common/eth2_network_config" }
|
2020-05-18 11:24:23 +00:00
|
|
|
clap_utils = { path = "../common/clap_utils" }
|
2020-09-29 00:02:44 +00:00
|
|
|
directory = { path = "../common/directory" }
|
2020-05-18 11:24:23 +00:00
|
|
|
eth2_wallet = { path = "../crypto/eth2_wallet" }
|
|
|
|
eth2_wallet_manager = { path = "../common/eth2_wallet_manager" }
|
2020-07-25 02:03:18 +00:00
|
|
|
validator_dir = { path = "../common/validator_dir" }
|
2021-11-18 05:08:42 +00:00
|
|
|
tokio = { version = "1.14.0", features = ["full"] }
|
2020-05-18 11:24:23 +00:00
|
|
|
eth2_keystore = { path = "../crypto/eth2_keystore" }
|
2020-07-22 09:34:55 +00:00
|
|
|
account_utils = { path = "../common/account_utils" }
|
2020-10-02 01:42:27 +00:00
|
|
|
slashing_protection = { path = "../validator_client/slashing_protection" }
|
2020-10-29 23:25:19 +00:00
|
|
|
eth2 = {path = "../common/eth2"}
|
|
|
|
safe_arith = {path = "../consensus/safe_arith"}
|
|
|
|
slot_clock = { path = "../common/slot_clock" }
|
2021-05-19 23:05:16 +00:00
|
|
|
filesystem = { path = "../common/filesystem" }
|
2021-05-04 01:59:51 +00:00
|
|
|
sensitive_url = { path = "../common/sensitive_url" }
|
2020-10-29 23:25:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.1.0"
|