-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 1.13 KB
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
[package]
name = "aes"
version = "0.9.0-rc.4"
description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/aes"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "aes", "rijndael", "block-cipher"]
categories = ["cryptography", "no-std"]
[dependencies]
cipher = "0.5.0-rc.8"
cpubits = "0.1.0-rc.3"
zeroize = { version = "1.5.6", optional = true, default-features = false, features = ["aarch64"] }
[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]
cpufeatures = "0.2.12"
[dev-dependencies]
cipher = { version = "0.5.0-rc.8", features = ["dev"] }
hex-literal = "1"
[features]
hazmat = [] # Expose cryptographically hazardous APIs
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(aes_compact)',
'cfg(aes_force_soft)',
'cfg(aes_avx256)',
'cfg(aes_avx512)',
'cfg(cpubits, values("16", "32", "64"))'
]
[package.metadata.docs.rs]
all-features = true