Skip to content

Commit

Permalink
aes-gcm v0.11.0-pre.0 (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jul 26, 2024
1 parent 6703a71 commit f0a75cb
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

2 comments on commit f0a75cb

@virusdefender
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some other dependencies related to RustCrypto need to be updated as well

like aes cipher

versions conflict occurs in my project

@tarcieri
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@virusdefender yes, we're in the middle of a large update with many, many prereleases. I'll cut another aes-gcm release soon.

Please sign in to comment.