From f0a75cb6d4b2838d81bf817aa3379cc6b2b6e038 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 26 Jul 2024 12:40:22 -0600 Subject: [PATCH] aes-gcm v0.11.0-pre.0 (#616) --- Cargo.lock | 2 +- aes-gcm/Cargo.toml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d6b0f5fc..0e8d3386 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.11.0-pre" +version = "0.11.0-pre.0" dependencies = [ "aead", "aes", diff --git a/aes-gcm/Cargo.toml b/aes-gcm/Cargo.toml index 15b94113..3aa62992 100644 --- a/aes-gcm/Cargo.toml +++ b/aes-gcm/Cargo.toml @@ -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 @@ -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