-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 1.13 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
[package]
name = "aes256ctr_poly1305aes"
version = "0.2.1"
authors = ["Alexander Weiss"]
categories = ["cryptography", "no-std"]
documentation = "https://docs.rs/aes256ctr-poly1305aes"
edition = "2021"
keywords = ["aead", "aes256ctr", "aes", "poly1305"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/rustic-rs/aes256ctr_poly1305aes"
rust-version = "1.60.0"
description = """
Pure Rust implementation of the AES256CTR-Poly1305AES Authenticated Encryption
with optional architecture-specific hardware acceleration.
"""
[dependencies]
aead = { version = "0.5", default-features = false }
aes = { version = "0.8" }
cipher = "0.4"
ctr = "0.9"
poly1305 = "0.8"
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }
[dev-dependencies]
aead = { version = "0.5", features = ["dev"], default-features = false }
[features]
default = ["alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items", "--generate-link-to-definition"]