Skip to content

Commit

Permalink
aes-gcm v0.11.0-pre.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jul 26, 2024
1 parent 6703a71 commit 761c5c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-gcm"
version = "0.11.0-pre"
version = "0.11.0-pre.0"
description = """
Pure Rust implementation of the AES-GCM (Galois/Counter Mode)
Authenticated Encryption with Associated Data (AEAD) Cipher
Expand Down Expand Up @@ -30,14 +30,14 @@ aead = { version = "=0.6.0-pre.0", features = ["dev"], default-features = false
hex-literal = "0.4"

[features]
default = ["aes", "alloc", "getrandom"]
std = ["aead/std", "cipher/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
default = ["aes", "alloc", "getrandom"]
std = ["aead/std", "cipher/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 761c5c3

Please sign in to comment.