From c209b0eebf515d9f34744b1af6676914dad86d59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 22:24:06 +0000 Subject: [PATCH] build(deps): update rustls-native-certs requirement from 0.7.0 to 0.8.0 Updates the requirements on [rustls-native-certs](https://github.com/rustls/rustls-native-certs) to permit the latest version. - [Release notes](https://github.com/rustls/rustls-native-certs/releases) - [Commits](https://github.com/rustls/rustls-native-certs/compare/v/0.7.1...v/0.8.0) --- updated-dependencies: - dependency-name: rustls-native-certs dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- compio-quic/Cargo.toml | 2 +- compio-tls/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compio-quic/Cargo.toml b/compio-quic/Cargo.toml index 00575023..836e35e0 100644 --- a/compio-quic/Cargo.toml +++ b/compio-quic/Cargo.toml @@ -25,7 +25,7 @@ compio-runtime = { workspace = true, features = ["time"] } quinn-proto = "0.11.3" rustls = { workspace = true } rustls-platform-verifier = { version = "0.3.3", optional = true } -rustls-native-certs = { version = "0.7.1", optional = true } +rustls-native-certs = { version = "0.8.0", optional = true } webpki-roots = { version = "0.26.3", optional = true } h3 = { version = "0.0.6", optional = true } diff --git a/compio-tls/Cargo.toml b/compio-tls/Cargo.toml index ef70c561..5df7935c 100644 --- a/compio-tls/Cargo.toml +++ b/compio-tls/Cargo.toml @@ -31,7 +31,7 @@ compio-runtime = { workspace = true } compio-macros = { workspace = true } rustls = { workspace = true, default-features = false, features = ["ring"] } -rustls-native-certs = "0.7.0" +rustls-native-certs = "0.8.0" [features] default = ["native-tls"]