Files
nym/validator/Cargo.toml
T
2020-02-05 16:28:56 +00:00

38 lines
929 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"
dirs = "2.0.2"
# 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"] }
## internal
crypto = {path = "../common/crypto"}
config = {path = "../common/config"}
directory-client = { path = "../common/clients/directory-client" }
healthcheck = {path = "../common/healthcheck" }
topology = {path = "../common/topology"}
[build-dependencies]
built = "0.3.2"
[dev-dependencies]
tempfile = "3.1.0"
[features]
qa = []
local = []