2021-09-16 03:26:33 +00:00
|
|
|
[package]
|
|
|
|
name = "web3signer_tests"
|
|
|
|
version = "0.1.0"
|
2022-02-25 00:10:17 +00:00
|
|
|
edition = "2021"
|
2021-09-16 03:26:33 +00:00
|
|
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
eth2_keystore = { path = "../../crypto/eth2_keystore" }
|
|
|
|
types = { path = "../../consensus/types" }
|
|
|
|
tempfile = "3.1.0"
|
2021-11-18 05:08:42 +00:00
|
|
|
tokio = { version = "1.14.0", features = ["rt-multi-thread", "macros"] }
|
2021-09-16 03:26:33 +00:00
|
|
|
reqwest = { version = "0.11.0", features = ["json","stream"] }
|
|
|
|
url = "2.2.2"
|
|
|
|
validator_client = { path = "../../validator_client" }
|
|
|
|
slot_clock = { path = "../../common/slot_clock" }
|
|
|
|
futures = "0.3.7"
|
|
|
|
exit-future = "0.2.0"
|
|
|
|
task_executor = { path = "../../common/task_executor" }
|
|
|
|
environment = { path = "../../lighthouse/environment" }
|
|
|
|
account_utils = { path = "../../common/account_utils" }
|
|
|
|
serde = "1.0.116"
|
|
|
|
serde_derive = "1.0.116"
|
|
|
|
serde_yaml = "0.8.13"
|
|
|
|
eth2_network_config = { path = "../../common/eth2_network_config" }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2021-11-18 05:08:42 +00:00
|
|
|
tokio = { version = "1.14.0", features = ["rt-multi-thread", "macros"] }
|
2021-09-16 03:26:33 +00:00
|
|
|
reqwest = { version = "0.11.0", features = ["json","stream"] }
|
|
|
|
serde_json = "1.0.58"
|
|
|
|
zip = "0.5.13"
|