-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathCargo.toml
36 lines (32 loc) · 1.09 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
[package]
name = "aead"
version = "0.6.0-rc.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/aead"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "encryption"]
categories = ["cryptography", "no-std"]
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""
[dependencies]
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" }
inout = "0.2.0-rc.4"
# optional dependencies
arrayvec = { version = "0.7", optional = true, default-features = false }
blobby = { version = "0.4.0-pre.0", optional = true }
bytes = { version = "1", optional = true, default-features = false }
heapless = { version = "0.8", optional = true, default-features = false }
[features]
default = ["rand_core"]
alloc = []
dev = ["blobby", "alloc"]
os_rng = ["crypto-common/os_rng", "rand_core"]
rand_core = ["crypto-common/rand_core"]
[package.metadata.docs.rs]
all-features = true