From: Otto Moerbeek Date: Mon, 10 Mar 2025 08:24:32 +0000 (+0100) Subject: rec: move to ring 0.17.13 X-Git-Tag: dnsdist-2.0.0-alpha1~33^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15269%2Fhead;p=thirdparty%2Fpdns.git rec: move to ring 0.17.13 A better fix for #15264 --- diff --git a/pdns/recursordist/rec-rust-lib/rust/Cargo.lock b/pdns/recursordist/rec-rust-lib/rust/Cargo.lock index 777564760a..06a2fa61d6 100644 --- a/pdns/recursordist/rec-rust-lib/rust/Cargo.lock +++ b/pdns/recursordist/rec-rust-lib/rust/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -474,6 +474,7 @@ dependencies = [ "hyper-util", "ipnet", "once_cell", + "ring", "rustls", "rustls-pemfile", "rustls-pki-types", @@ -486,15 +487,14 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.8" +version = "0.17.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee" dependencies = [ "cc", "cfg-if", "getrandom", "libc", - "spin", "untrusted", "windows-sys 0.52.0", ] @@ -618,12 +618,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "spin" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" - [[package]] name = "strsim" version = "0.11.1" diff --git a/pdns/recursordist/rec-rust-lib/rust/Cargo.toml b/pdns/recursordist/rec-rust-lib/rust/Cargo.toml index 1e5a20bce4..28b74bf965 100644 --- a/pdns/recursordist/rec-rust-lib/rust/Cargo.toml +++ b/pdns/recursordist/rec-rust-lib/rust/Cargo.toml @@ -22,6 +22,7 @@ hyper-util = { version = "0.1", features = ["tokio"]} bytes = "1.8" form_urlencoded = "1.2" hyper-rustls = { version = "0.27", default-features = false } +ring = "0.17.13" rustls = { version = "0.23", default-features = false, features = ["ring"] } rustls-pemfile = "2.2" pki-types = { package = "rustls-pki-types", version = "1.10" }