-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (44 loc) · 1.21 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
45
46
47
48
49
50
51
52
53
54
[package]
name = "capycrypt"
version = "0.7.5"
edition = "2021"
license = "MIT"
keywords = ["cryptography", "aes", "sha3", "ed448", "mlkem"]
readme = "README.md"
authors = ["Dustin Ray (Dr. Capybara) <[email protected]>", "Hunter Richardson (HLRichardson-Git) <[email protected]>"]
description = "An advanced cryptographic suite for secure message exchange"
repository = "https://github.com/drcapybara/capyCRYPT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = {version = "0.4.3"}
byteorder = {version = "1.4.3"}
chrono = {version = "0.4.23"}
criterion = "0.3"
crypto-bigint = {version = "0.5.3", features = ["serde", "alloc"]}
rand = "0.8"
tiny_ed448_goldilocks = { version = "0.1.8"}
aes = "0.8.3"
rayon = "1.5"
structopt = "0.3"
serde = { version = "1.0", features = ["alloc", "derive"] }
serde_json = "1.0"
tempfile = "3.2"
capy_kem = "0.1.9"
[[bench]]
name = "benchmark_sha3"
harness = false
[[bench]]
name = "benchmark_e448_224"
harness = false
[[bench]]
name = "benchmark_e448_512"
harness = false
[[bench]]
name = "benchmark_aes"
harness = false
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[profile.test]
opt-level = 3