From 213180642a6858cd6e1f25387304496ab79b5179 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:55:26 +0000 Subject: [PATCH] build(deps): Update rustls requirement from 0.22.2 to 0.23.5 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.22.2...v/0.23.5) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/cert-manager/Cargo.toml | 2 +- core/network/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/cert-manager/Cargo.toml b/core/cert-manager/Cargo.toml index 884cb85..a31a446 100644 --- a/core/cert-manager/Cargo.toml +++ b/core/cert-manager/Cargo.toml @@ -17,7 +17,7 @@ rand = "0.8.5" random-manager = "0.0.5" # https://crates.io/crates/random-manager/versions rcgen = { version = "0.12.1", features = ["pem", "x509-parser"] } rsa = { version = "0.9.2", features = ["pem"] } # https://crates.io/crates/rsa -rustls = "0.22.2" +rustls = "0.23.5" rustls-pemfile = "2.0.0" x509-parser = "0.16.0" diff --git a/core/network/Cargo.toml b/core/network/Cargo.toml index 7563e6e..63eede2 100644 --- a/core/network/Cargo.toml +++ b/core/network/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] avalanche-types = { path = "../../crates/avalanche-types", features = ["message"] } log = "0.4.20" -rustls = { version = "0.22.2", features = ["logging"] } +rustls = { version = "0.23.5", features = ["logging"] } hyper-rustls = "0.26.0" rustls-native-certs = "0.7.0" hyper = { version = "0.14.27", features = ["full"], optional = true }