coffer/coffer-common/Cargo.toml

29 lines
664 B
TOML
Raw Permalink Normal View History

[package]
name = "coffer-common"
version = "0.4.0"
authors = ["armin"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020-01-19 10:31:33 +00:00
[features]
# Make certificates exportable
# Otherwise secret keys are not accessible other than via the Certificate API
export = []
[dependencies]
# Base tools
log = "^0.4"
env_logger = "^0.7"
quick-error = "^1.2"
# Serialization
serde = { version = "^1.0", features = ["derive"]}
serde_cbor = "^0.10"
toml = "^0.5"
base64 = "^0.11"
hex = "^0.4"
# Key management/Cryptography
sodiumoxide = "^0.2"
2020-01-26 08:33:50 +00:00
seckey = "^0.9"
#Communication
tokio = { version="^0.2.9", features = ["full"]}