-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.29 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
43
44
workspace = { members = [ "crypt_guard_proc"] }
[package]
name = "crypt_guard"
version = "1.3.5"
edition = "2021"
description = "CryptGuard is a post-quantum cryptography library with support for Kyber, AES, XChaCha20, and Falcon, ensuring future-proof security. Simplify encryption, decryption, and digital signing with intuitive Rust macros, designed to protect data against quantum threats."
license = "MIT"
repository = "https://github.com/mm9942/crypt_guard"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.4"
hex = "0.4.3"
hmac = "0.12.1"
pqcrypto-falcon = { version = "0.3.0" }
pqcrypto-traits = "0.3.5"
rand = "0.8.5"
sha2 = "0.10.8"
chacha20 = "0.9.1"
pqcrypto-dilithium = "0.5.0"
pqcrypto-kyber = "0.8.1"
chrono = "0.4.37"
lazy_static = "1.4.0"
crypt_guard_proc = { path = "./crypt_guard_proc", version = "0.2.0" }
zeroize = "1.8.1"
digest = "0.10.7"
sudo = "0.6.0"
sysinfo = "0.30.13"
xts-mode = "0.5.1"
block-padding = "0.3.3"
cbc = { version = "0.1.2", features = ["alloc", "std"] }
ctr = "0.9.2"
generic-array = "1.1.0"
aes-gcm-siv = "0.11.1"
chacha20poly1305 = "0.10.1"
nix = { version = "0.29.0", features = ["fs"], optional = true }
[dev-dependencies]
# criterion = "0.5.1"
tempfile = "3.10.1"
[features]
devices = ["nix"]