forked from wyhaya/aef
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 700 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 700 Bytes
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
[package]
name = "doby"
version = "0.3.0"
edition = "2021"
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
license = "GPL-3.0-or-later"
description = "Simple, secure and lightweight symmetric encryption from the command line"
readme = "README.md"
repository = "https://forge.chapril.org/hardcoresushi/doby"
[profile.release]
lto = true
codegen-units = 1
[profile.dev.package.argon2]
opt-level = 3
[dependencies]
clap = "2.33"
rand = "0.8"
num_enum = "0.5"
cpufeatures = "0.2"
aes = { version = "0.7", features = ["ctr"] }
chacha20 = "0.8"
subtle = "2.4"
blake2 = "0.9"
hkdf = "0.11"
argon2 = "0.3"
rpassword = "5.0"
zeroize = "1.3"
[dev-dependencies]
assert_cmd = "2.0"
tempfile = "3.0"