-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (38 loc) · 1006 Bytes
/
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
45
[package]
name = "kychacha_crypto"
description = "A Post-Quantum Secure Encryption Protocol using chacha20poly1305 and CRYSTALS-kyber"
version = "1.1.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/Nichokas/kychacha_crypto"
readme = "README.md"
exclude = [
".cargo_vcs_info.json",
".github/dependabot.yml",
".github/workflows/auto-merge.yaml",
".github/workflows/codspeed.yaml",
".github/workflows/rustsec.yaml",
".idea/.gitignore",
"example/",
]
[dependencies]
anyhow = "1.0.95"
base64 = "0.22.1"
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
hkdf = "0.12.4"
serde = { version = "1.0.217", features = ["derive"] }
sha2 = "0.10.8"
kyberlib = "0.0.6"
rand = "0.8.5"
zerocopy = "0.8.17"
bincode = "1.3.3"
serde_bytes = "0.11.15"
humansize = "2.1.3"
[dev-dependencies]
criterion = { version = "2.7.2", package = "codspeed-criterion-compat" }
[[bench]]
name = "kyber_bench"
harness = false
[[bench]]
name = "chacha_bench"
harness = false