From 7c12b330db342df2c37c4e2250be3324d3d93840 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Aug 2022 08:24:16 +0000 Subject: [PATCH] Bump chacha20poly1305 from 0.10.0 to 0.10.1 Bumps [chacha20poly1305](https://github.com/RustCrypto/AEADs) from 0.10.0 to 0.10.1. - [Release notes](https://github.com/RustCrypto/AEADs/releases) - [Commits](https://github.com/RustCrypto/AEADs/compare/chacha20poly1305-v0.10.0...chacha20poly1305-v0.10.1) --- updated-dependencies: - dependency-name: chacha20poly1305 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/config/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eadebcb8..bacb1398 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -747,9 +747,9 @@ dependencies = [ [[package]] name = "chacha20poly1305" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d6e4974f4531e7674f7bde1fdda79802e5151e7a87580b7a282403f1648f75" +checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" dependencies = [ "aead 0.5.0", "chacha20", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index c905a54a..5f60758d 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -28,7 +28,7 @@ rand = "0.8.5" rsa = "0.7.0-pre" p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] } pkcs8 = { version = "0.9.0", features = ["pem"] } -chacha20poly1305 = { version = "0.10.0", features = ["std"] } +chacha20poly1305 = { version = "0.10.1", features = ["std"] } cookie = { version = "0.16.0", features = ["private", "key-expansion"] } data-encoding = "2.3.2"