25 lines
No EOL
560 B
TOML
25 lines
No EOL
560 B
TOML
[package]
|
|
name = "coffer-server"
|
|
version = "0.4.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"
|
|
lazy_static = "^1.4"
|
|
|
|
# Key management/Cryptography
|
|
sodiumoxide = "^0.2"
|
|
hex = "^0.4"
|
|
# Communication
|
|
tokio = { version="^0.2.9", features = ["full"]}
|
|
serde = { version = "^1.0", features = ["derive"]}
|
|
serde_cbor = "^0.10.2"
|
|
futures = { version = "0.3.1", features = ["thread-pool"]}
|
|
bytes = "^0.5"
|
|
|
|
coffer-common = { path = "../coffer-common" } |