doby/Cargo.toml

29 lines
559 B
TOML
Raw Normal View History

2021-06-25 23:01:50 +02:00
[package]
name = "doby"
version = "0.1.0"
edition = "2018"
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
license = "GPL-3.0-or-later"
description = "Secure symmetric encryption from the command line"
readme = "README.md"
[profile.release]
lto = true
codegen-units = 1
[profile.dev.package.argon2]
opt-level = 3
[dependencies]
2021-06-27 20:35:23 +02:00
clap = "2.33"
2021-06-25 23:01:50 +02:00
rand = "0.8"
2021-06-27 20:35:23 +02:00
num_enum = "0.5"
cpufeatures = "0.1"
aes = { version = "0.7", features = ["ctr"] }
chacha20 = "0.7"
2021-06-25 23:01:50 +02:00
hmac = "0.11"
blake3 = "0.3"
hkdf = "0.11"
argon2 = "0.2"
rpassword = "5.0"
zeroize = "1.3"