33 lines
843 B
TOML
33 lines
843 B
TOML
[package]
|
|
build = "build.rs"
|
|
name = "nym-validator"
|
|
version = "0.4.1"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
abci = "0.6.4"
|
|
byteorder = "1.3.2"
|
|
clap = "2.33.0"
|
|
# Read notes https://crates.io/crates/dotenv - tl;dr: don't use in production, set environmental variables properly.
|
|
dotenv = "0.15.0"
|
|
futures = "0.3.1"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.3"
|
|
serde = "1.0.104"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
toml = "0.5.5"
|
|
|
|
## internal
|
|
crypto = {path = "../common/crypto"}
|
|
directory-client = { path = "../common/clients/directory-client" }
|
|
healthcheck = {path = "../common/healthcheck" }
|
|
topology = {path = "../common/topology"}
|
|
|
|
[build-dependencies]
|
|
built = "0.3.2"
|
|
|
|
[dev-dependencies]
|