moksha/Cargo.toml

45 lines
764 B
TOML

[package]
name = "moksha"
version = "0.1.0"
authors = ["kitzman <kitzman @ disroot.org>"]
edition = "2018"
[dependencies]
log = "0.4.11"
env_logger = "0.8.2"
num-traits = "0.2"
num-derive = "0.3"
lazy_static = "1.4.0"
syscalls = "0.3.5"
nix = "0.23.1"
mktemp = "0.4.1"
walkdir = "2.3.2"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
clap = "2.33.3"
regex = "1.4.0"
sha2 = "0.10.0"
base58 = "0.2.0"
tokio = { version = "1.15.0", features = ["full"] }
futures = { version = "0.3.17" }
dkregistry = { git = "https://github.com/camallo/dkregistry-rs", rev = "421c28c" }
[lib]
name = "moksha"
path = "src/lib.rs"
[[bin]]
name = "nstool"
path = "src/bin/nstool.rs"
[[bin]]
name = "moksha-state"
path = "src/bin/moksha_state.rs"