1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

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] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-08-19 08:24:16 +00:00
committed by Quentin Gliech
parent 95eba8f88b
commit 7c12b330db
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -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",

View File

@@ -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"