596bc76cc6
* Updated all non-breaking dependencies * Updated common/crypto dependencies * Updated all tokio [and associated] dependencies to most recent version * Bumped version of rand_distr * Fixed api changes in tests * Made clippy happier about the acronym * Fixed the type while trying to make clippy even happier * nightly cargo fmt
20 lines
532 B
TOML
20 lines
532 B
TOML
[package]
|
|
name = "validator-client"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>, David Hrycyszyn <dave@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
schemars = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
crypto = { path = "../../crypto" }
|
|
topology = { path = "../../topology" }
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.30"
|
|
tokio = "1.4" |