-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 939 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 loc) · 939 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
35
36
37
38
39
40
41
42
[package]
name = "concryptor"
version = "1.0.5"
edition = "2021"
rust-version = "1.75"
description = "A multi-threaded AEAD encryption engine"
license = "AGPL-3.0-or-later"
repository = "https://github.com/FrogSnot/Concryptor"
homepage = "https://github.com/FrogSnot/Concryptor"
readme = "README.md"
authors = ["FrogSnot"]
keywords = ["encryption", "aead", "cli", "chacha20", "aes-gcm"]
categories = ["cryptography", "command-line-utilities"]
[dependencies]
ring = "0.17"
io-uring = "0.7"
libc = "0.2"
argon2 = "0.5"
rayon = "1.10"
clap = { version = "4", features = ["derive"] }
indicatif = "0.18"
rand = "0.10"
anyhow = "1"
rpassword = "7"
zeroize = { version = "1", features = ["derive"] }
tar = "0.4"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
tempfile = "3"
sha2 = "0.11"
[[bench]]
name = "throughput"
harness = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true