From e6122af6e7bd9fb1e17b232609217b3e9a5a948f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 01:17:21 +0000 Subject: [PATCH] build(deps): update rustls requirement from 0.21 to 0.22 Updates the requirements on [rustls](https://github.com/rustls/rustls) to permit the latest version. - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.21.0...v/0.21.9) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- quic/s2n-quic-qns/Cargo.toml | 2 +- quic/s2n-quic-rustls/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quic/s2n-quic-qns/Cargo.toml b/quic/s2n-quic-qns/Cargo.toml index 8d5ead76d8..ddb351658c 100644 --- a/quic/s2n-quic-qns/Cargo.toml +++ b/quic/s2n-quic-qns/Cargo.toml @@ -24,7 +24,7 @@ humansize = "2" lru = "0.10" rand = "0.8" # dangerous_configuration is used to allow for cert verification to be disabled for the amplification limit interop test -rustls = { version = "0.21", features = ["dangerous_configuration", "quic"] } +rustls = { version = "0.22", features = ["dangerous_configuration", "quic"] } s2n-codec = { path = "../../common/s2n-codec" } s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] } s2n-quic-h3 = { path = "../s2n-quic-h3" } diff --git a/quic/s2n-quic-rustls/Cargo.toml b/quic/s2n-quic-rustls/Cargo.toml index 8f826fba67..e4b52896c6 100644 --- a/quic/s2n-quic-rustls/Cargo.toml +++ b/quic/s2n-quic-rustls/Cargo.toml @@ -12,7 +12,7 @@ exclude = ["corpus.tar.gz"] [dependencies] bytes = { version = "1", default-features = false } -rustls = { version = "0.21", features = ["quic"] } +rustls = { version = "0.22", features = ["quic"] } rustls-pemfile = "1" s2n-codec = { version = "=0.32.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] } s2n-quic-core = { version = "=0.32.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }