2020-11-06 06:17:11 +00:00
|
|
|
[package]
|
|
|
|
name = "remote_signer_test"
|
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["Herman Junge <herman@sigmaprime.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = "2.33.3"
|
|
|
|
environment = { path = "../../lighthouse/environment" }
|
2020-11-19 04:04:52 +00:00
|
|
|
hex = "0.4.2"
|
|
|
|
httpmock = "0.5.1"
|
|
|
|
remote_signer_client = { path = "../../remote_signer/client" }
|
|
|
|
remote_signer_consumer = { path = "../../common/remote_signer_consumer" }
|
2021-02-10 23:29:49 +00:00
|
|
|
reqwest = { version = "0.11.0", features = ["blocking", "json"] }
|
2020-11-06 06:17:11 +00:00
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
|
|
serde_json = "1.0.58"
|
2021-01-06 06:36:11 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-02-10 23:29:49 +00:00
|
|
|
tokio = { version = "1.1.0", features = ["time"] }
|
2020-11-06 06:17:11 +00:00
|
|
|
types = { path = "../../consensus/types" }
|
2021-05-04 01:59:51 +00:00
|
|
|
sensitive_url = { path = "../../common/sensitive_url" }
|
2021-05-19 23:05:16 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "~0.3.5"
|
|
|
|
windows-acl = "~0.3.0"
|
|
|
|
|