-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
47 lines (39 loc) · 1.25 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
[package]
name = "aegis"
version = "0.6.12"
edition = "2018"
authors = ["Frank Denis <[email protected]>"]
description = "AEGIS authenticated ciphers (AEGIS-128, AEGIS-256, AEGIS-128X, AEGIS-256X)"
keywords = ["aegis128l", "cipher", "aead", "aes", "crypto"]
license = "MIT"
homepage = "https://github.com/jedisct1/rust-aegis"
repository = "https://github.com/jedisct1/rust-aegis"
categories = ["no-std", "cryptography"]
readme = "README.md"
[target."cfg(not(any(all(target_arch = \"aarch64\", target_feature = \"aes\"),all(target_arch = \"x86_64\", target_feature = \"aes\"),all(target_arch = \"x86\", target_feature = \"aes\"))))".dependencies.softaes]
version = "0.1"
[build-dependencies]
cc = "1.1.35"
[dev-dependencies]
benchmark-simple = "0.1.10"
ascon-aead = "0.4.2"
aes-gcm = "0.10.3"
chacha20poly1305 = "0.10.1"
sthash = "0.2.15"
blake3 = "1.5.4"
[dependencies]
aead = { optional = true, version = "0.6.0-rc.0", features = ["rand_core"] }
[target."cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))".dev-dependencies.boring]
version = "4.11.0"
[[bench]]
name = "benchmark"
harness = false
[features]
default = ["std"]
pure-rust = []
rustcrypto-traits-06 = ["aead"]
std = []
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"