coffer/coffer-server/Cargo.toml

21 lines
508 B
TOML
Raw Normal View History

[package]
name = "coffer-server"
version = "0.2.0"
authors = ["Armin Friedl <dev@friedl.net>"]
edition = "2018"
[dependencies]
# Base tools
log = "^0.4"
env_logger = "^0.7"
structopt = "^0.3"
quick-error = "^1.2"
# Key management/Cryptography
sodiumoxide = "^0.2"
# Communication
tokio = { version="^0.2", features = ["full"]}
serde = { version = "^1.0", features = ["derive"]}
serde_cbor = "^0.10.2"
2020-01-01 18:11:14 +00:00
futures = { version = "0.3.1", features = ["thread-pool"]}
coffer-common = { path = "../coffer-common" }