coffer/coffer-server/Cargo.toml
Armin Friedl b3b86b4238
[client] Set up environment, spawn subprocess
- Coffer client sets up the environment from the keys and secrets read
- Coffer client spawns a subprocess and reaps itself

Signed-off-by: Armin Friedl <dev@friedl.net>
2019-11-27 23:00:18 +01:00

18 lines
No EOL
407 B
TOML

[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.5"
# Communication
serde = { version = "1.0", features = ["derive"]}
serde_cbor = "0.10.2"
futures = { version = "0.3.1", features = ["thread-pool"]}