4cc613d644
## Issue Addressed #2276 ## Proposed Changes Add the `SensitiveUrl` struct which wraps `Url` and implements custom `Display` and `Debug` traits to redact user secrets from being logged in eth1 endpoints, beacon node endpoints and metrics. ## Additional Info This also includes a small rewrite of the eth1 crate to make requests using `Url` instead of `&str`. Some error messages have also been changed to remove `Url` data.
21 lines
693 B
TOML
21 lines
693 B
TOML
[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" }
|
|
hex = "0.4.2"
|
|
httpmock = "0.5.1"
|
|
remote_signer_client = { path = "../../remote_signer/client" }
|
|
remote_signer_consumer = { path = "../../common/remote_signer_consumer" }
|
|
reqwest = { version = "0.11.0", features = ["blocking", "json"] }
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
serde_json = "1.0.58"
|
|
tempfile = "3.1.0"
|
|
tokio = { version = "1.1.0", features = ["time"] }
|
|
types = { path = "../../consensus/types" }
|
|
sensitive_url = { path = "../../common/sensitive_url" }
|