From e4f734b9f29b61e60b7ee95ee1d590036f5ebe23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 13:29:43 +0000 Subject: [PATCH] Update rustls requirement from 0.21.0 to 0.22.0 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] --- bench/Cargo.toml | 2 +- perf/Cargo.toml | 2 +- quinn-proto/Cargo.toml | 2 +- quinn/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 11ca13c6b..ad526301b 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -11,7 +11,7 @@ bytes = "1" hdrhistogram = { version = "7.2", default-features = false } quinn = { path = "../quinn" } rcgen = "0.11.1" -rustls = { version = "0.21.0", default-features = false, features = ["quic"] } +rustls = { version = "0.22.0", default-features = false, features = ["quic"] } clap = { version = "4", features = ["derive"] } tokio = { version = "1.0.1", features = ["rt", "sync"] } tracing = "0.1.10" diff --git a/perf/Cargo.toml b/perf/Cargo.toml index fff63784a..d0d2623ff 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -16,7 +16,7 @@ hdrhistogram = { version = "7.2", default-features = false } quinn = { path = "../quinn" } quinn-proto = { path = "../quinn-proto" } rcgen = "0.11.1" -rustls = { version = "0.21.0", default-features = false, features = ["dangerous_configuration"] } +rustls = { version = "0.22.0", default-features = false, features = ["dangerous_configuration"] } rustls-pemfile = "1.0.0" serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true } diff --git a/quinn-proto/Cargo.toml b/quinn-proto/Cargo.toml index 04baa3a4d..d7c816ee2 100644 --- a/quinn-proto/Cargo.toml +++ b/quinn-proto/Cargo.toml @@ -30,7 +30,7 @@ bytes = "1" rustc-hash = "1.1" rand = "0.8" ring = { version = "0.16.7", optional = true } -rustls = { version = "0.21.0", default-features = false, features = ["quic"], optional = true } +rustls = { version = "0.22.0", default-features = false, features = ["quic"], optional = true } rustls-native-certs = { version = "0.6", optional = true } slab = "0.4" thiserror = "1.0.21" diff --git a/quinn/Cargo.toml b/quinn/Cargo.toml index b8bfb2073..7a813ed31 100644 --- a/quinn/Cargo.toml +++ b/quinn/Cargo.toml @@ -41,7 +41,7 @@ futures-io = { version = "0.3.19", optional = true } rustc-hash = "1.1" pin-project-lite = "0.2" proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.11", default-features = false } -rustls = { version = "0.21.0", default-features = false, features = ["quic"], optional = true } +rustls = { version = "0.22.0", default-features = false, features = ["quic"], optional = true } thiserror = "1.0.21" tracing = "0.1.10" tokio = { version = "1.28.1", features = ["sync"] }