From 5a1641fba4bb7183b9fcea6ceca3fe70bd3a34c0 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 7 Mar 2025 10:49:10 +0100 Subject: [PATCH] cargo: add `ring` mindep bump --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4e92ff28..3f4600bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ client_api = [ ] client_der = ["reqwest/native-tls", "client_api"] client_pem = ["reqwest/rustls-tls", "client_api"] -minimal_versions = ["void", "openssl", "tempfile", "mio", "rustls", "bumpalo", "combine"] +minimal_versions = ["void", "openssl", "tempfile", "mio", "rustls", "bumpalo", "combine", "ring"] # This feature is here to aid with `semver-checks` by hiding the known-unstable # parts of the crate. _nohooks = [] @@ -75,6 +75,8 @@ rustls = { version = "0.22.4", optional = true } bumpalo = { version = "3.11.1", optional = true } # Required to avoid https://rustsec.org/advisories/RUSTSEC-2023-0015 combine = { version = "3.6.2", optional = true } +# Required to avoid https://rustsec.org/advisories/RUSTSEC-2025-0009 +ring = { version = "0.17.12", optional = true } [dev-dependencies] itertools = { version = "~0.12" } -- GitLab