doby/Cargo.toml

34 lines
700 B
TOML
Raw Normal View History

2021-06-25 23:01:50 +02:00
[package]
name = "doby"
2021-12-01 14:23:49 +01:00
version = "0.3.0"
edition = "2021"
2021-06-25 23:01:50 +02:00
authors = ["Hardcore Sushi <hardcore.sushi@disroot.org>"]
license = "GPL-3.0-or-later"
2021-12-01 14:23:49 +01:00
description = "Simple, secure and lightweight symmetric encryption from the command line"
2021-06-25 23:01:50 +02:00
readme = "README.md"
2021-12-03 15:45:01 +01:00
repository = "https://forge.chapril.org/hardcoresushi/doby"
2021-06-25 23:01:50 +02:00
[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"
2021-08-31 13:06:45 +02:00
cpufeatures = "0.2"
2021-06-27 20:35:23 +02:00
aes = { version = "0.7", features = ["ctr"] }
2021-08-31 13:06:45 +02:00
chacha20 = "0.8"
2021-11-14 12:08:40 +01:00
subtle = "2.4"
blake2 = "0.9"
2021-06-25 23:01:50 +02:00
hkdf = "0.11"
2021-08-31 13:06:45 +02:00
argon2 = "0.3"
2021-06-25 23:01:50 +02:00
rpassword = "5.0"
2021-07-04 14:38:51 +02:00
zeroize = "1.3"
[dev-dependencies]
2021-08-31 13:06:45 +02:00
assert_cmd = "2.0"
2021-07-04 14:38:51 +02:00
tempfile = "3.0"