From b994f2905e6f8fe0cd1b853276e9f4b093880882 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Jul 2022 13:03:26 +0000 Subject: [PATCH] Bump chacha20poly1305 from 0.8.0 to 0.9.1 Bumps [chacha20poly1305](https://github.com/RustCrypto/AEADs) from 0.8.0 to 0.9.1. - [Release notes](https://github.com/RustCrypto/AEADs/releases) - [Commits](https://github.com/RustCrypto/AEADs/compare/chacha20poly1305-v0.8.0...chacha20poly1305-v0.9.1) --- updated-dependencies: - dependency-name: chacha20poly1305 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 ++++++++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7e6af3a..79d9e0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ checksum = "99446914425f48a667458b33c7fb920e24cf9e7c149a072a9fc420731b353835" dependencies = [ "cfg-if 1.0.0", "cipher", - "cpufeatures", + "cpufeatures 0.1.1", "opaque-debug", ] @@ -212,21 +212,21 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chacha20" -version = "0.7.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fee7ad89dc1128635074c268ee661f90c3f7e83d9fd12910608c36b47d6c3412" +checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" dependencies = [ "cfg-if 1.0.0", "cipher", - "cpufeatures", + "cpufeatures 0.2.2", "zeroize", ] [[package]] name = "chacha20poly1305" -version = "0.8.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1580317203210c517b6d44794abfbe600698276db18127e37ad3e69bf5e848e5" +checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" dependencies = [ "aead", "chacha20", @@ -287,6 +287,15 @@ dependencies = [ "libc", ] +[[package]] +name = "cpufeatures" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" +dependencies = [ + "libc", +] + [[package]] name = "crypto-mac" version = "0.11.0" @@ -698,7 +707,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fe800695325da85083cd23b56826fccb2e2dc29b218e7811a6f33bc93f414be" dependencies = [ - "cpufeatures", + "cpufeatures 0.1.1", "opaque-debug", "universal-hash", ] @@ -709,7 +718,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "864231b0b86ce05168a8e6da0fea2e67275dacf25f75b00a62cfd341aab904a9" dependencies = [ - "cpufeatures", + "cpufeatures 0.1.1", "opaque-debug", "universal-hash", ] @@ -975,7 +984,7 @@ checksum = "d8f6b75b17576b792bef0db1bcc4b8b8bcdf9506744cf34b974195487af6cff2" dependencies = [ "block-buffer", "cfg-if 1.0.0", - "cpufeatures", + "cpufeatures 0.1.1", "digest", "opaque-debug", ] diff --git a/Cargo.toml b/Cargo.toml index ca2ce79..69015c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ aead = "0.4" aes-gcm = "0.9" anomaly = "0.2" bytes = "1" -chacha20poly1305 = "0.8" +chacha20poly1305 = "0.9" chrono = "0.4" cryptouri = "0.4" gumdrop = { version = "0.7", optional = true }