e004b98eab
The remote signer relies on the `types` and `crypto/bls` crates from Lighthouse. Moreover, a number of tests of the remote signer consumption of LH leverages this very signer, making any important update a potential dependency nightmare. Co-authored-by: Paul Hauner <paul@paulhauner.com>
16 lines
498 B
TOML
16 lines
498 B
TOML
[package]
|
|
name = "remote_signer_test"
|
|
version = "0.2.0"
|
|
authors = ["Herman Junge <herman@sigmaprime.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.3"
|
|
client = { path = "../../remote_signer/client", package = "remote_signer_client" }
|
|
environment = { path = "../../lighthouse/environment" }
|
|
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
serde_json = "1.0.58"
|
|
tempdir = "0.3.7"
|
|
types = { path = "../../consensus/types" }
|