-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
42 lines (38 loc) · 1.05 KB
/
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
37
38
39
40
41
42
[package]
name = "sear"
description = "Signed/Encrypted ARchive: an encrypted archive format with tar-like CLI tool"
version = "0.0.0"
license = "Apache-2.0"
authors = ["Tony Arcieri <[email protected]>"]
categories = ["command-line-interface", "cryptography", "parser-implementations"]
keywords = ["archive", "encryption", "security"]
edition = "2018"
[dependencies]
abscissa_core = { version = "0.5.2", optional = true }
aead = "0.4"
aes-gcm = "0.9"
anomaly = "0.2"
bytes = "1"
chacha20poly1305 = "0.8"
chrono = "0.4"
cryptouri = "0.4"
gumdrop = { version = "0.7", optional = true }
getrandom = "0.2"
hkdf = "0.11"
mime = "0.3"
prost = "0.7"
serde = { version = "1", features = ["serde_derive"], optional = true }
sha2 = "0.9"
tai64 = { version = "3", features = ["chrono"] }
thiserror = "1"
tree_magic = "0.2"
uuid = { version = "0.8", default-features = false }
zeroize = "1"
[build-dependencies]
prost-build = "0.7"
[dev-dependencies]
once_cell = "1"
tempfile = "3"
[features]
default = ["cli"]
cli = ["abscissa_core", "gumdrop", "serde"]