-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 964 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "pkstl"
version = "0.1.0"
authors = ["elois <[email protected]>"]
description = "Public Key Secure Transport Layer."
repository = "https://github.com/librelois/pkstl"
readme = "README.md"
keywords = ["security", "transport", "cryptography"]
license = "AGPL-3.0"
edition = "2018"
[lib]
path = "src/lib.rs"
[dependencies]
bincode = { version = "1.2.0", optional = true }
chacha20-poly1305-aead = "0.1.2"
failure = "0.1.5"
flate2 = { version = "1.0.11", optional = true }
ring = "0.16.9"
serde = { version = "1.0.*", features = ["derive"], optional = true }
serde_cbor = { version = "0.10.2", optional = true }
serde_json = { version = "1.0.40", optional = true }
log = "0.4.*"
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
[dev-dependencies]
pretty_assertions = "0.6.1"
[features]
default = ["zip-sign"]
zip-sign = ["flate2"]
ser = ["zip-sign", "serde"]
bin = ["bincode", "ser"]
cbor = ["serde_cbor", "ser"]
json = ["serde_json", "ser"]