2019-11-23 21:42:07 +00:00
|
|
|
[package]
|
2019-11-26 03:00:24 +00:00
|
|
|
name = "coffer-server"
|
2020-01-26 00:05:12 +00:00
|
|
|
version = "0.4.0"
|
2019-11-23 21:42:07 +00:00
|
|
|
authors = ["Armin Friedl <dev@friedl.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Base tools
|
2020-01-06 16:32:56 +00:00
|
|
|
log = "^0.4"
|
|
|
|
env_logger = "^0.7"
|
|
|
|
structopt = "^0.3"
|
|
|
|
quick-error = "^1.2"
|
2020-01-08 22:03:49 +00:00
|
|
|
lazy_static = "^1.4"
|
|
|
|
|
2019-11-23 21:42:07 +00:00
|
|
|
# Key management/Cryptography
|
2020-01-06 16:32:56 +00:00
|
|
|
sodiumoxide = "^0.2"
|
2020-01-19 10:31:33 +00:00
|
|
|
hex = "^0.4"
|
2019-11-23 21:42:07 +00:00
|
|
|
# Communication
|
2020-01-12 22:46:44 +00:00
|
|
|
tokio = { version="^0.2.9", features = ["full"]}
|
2020-01-06 16:32:56 +00:00
|
|
|
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"]}
|
2020-01-12 22:46:44 +00:00
|
|
|
bytes = "^0.5"
|
2020-01-06 16:32:56 +00:00
|
|
|
|
|
|
|
coffer-common = { path = "../coffer-common" }
|