Skip to content

Commit

Permalink
Update aes-gcm requirement from 0.9.4 to 0.10.1 (#88)
Browse files Browse the repository at this point in the history
* Update aes-gcm requirement from 0.9.4 to 0.10.1

Updates the requirements on [aes-gcm](https://github.com/RustCrypto/AEADs) to permit the latest version.
- [Release notes](https://github.com/RustCrypto/AEADs/releases)
- [Commits](RustCrypto/AEADs@aes-gcm-v0.9.4...aes-gcm-v0.10.1)

---
updated-dependencies:
- dependency-name: aes-gcm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update pure_aes.rs

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Weiliang Li <[email protected]>
  • Loading branch information
dependabot[bot] and kigawas authored Aug 2, 2022
1 parent e7f8ac9 commit c26c4d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sha2 = "0.10.1"
openssl = {version = "0.10.38", optional = true}

# pure rust aes
aes-gcm = {version = "0.9.4", optional = true}
aes-gcm = {version = "0.10.1", optional = true}
typenum = {version = "1.14.0", optional = true}

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/pure_aes.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use aes_gcm::aead::{generic_array::GenericArray, AeadInPlace, NewAead};
use aes_gcm::{aes::Aes256, AesGcm};
use aes_gcm::aead::{generic_array::GenericArray, AeadInPlace};
use aes_gcm::{aes::Aes256, AesGcm, KeyInit};
use rand::{thread_rng, Rng};
use typenum::consts::U16;

Expand Down

0 comments on commit c26c4d8

Please sign in to comment.