From eeba8671ff22523d125ebe72484ccb86ce8955c4 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Tue, 21 Oct 2025 16:45:04 -0400 Subject: [PATCH] upgrade rustls 0.23.31 -> 0.23.33 No functional changes for rustls-ffi. --- Cargo.lock | 4 ++-- librustls/Cargo.toml | 2 +- librustls/build.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a00d81a..6f8ff425 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1206,9 +1206,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.31" +version = "0.23.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" +checksum = "751e04a496ca00bb97a5e043158d23d66b5aabf2e1d5aa2a0aaebb1aafe6f82c" dependencies = [ "aws-lc-rs", "brotli", diff --git a/librustls/Cargo.toml b/librustls/Cargo.toml index fcfc0c0f..7fee925c 100644 --- a/librustls/Cargo.toml +++ b/librustls/Cargo.toml @@ -30,7 +30,7 @@ prefer-post-quantum = ["aws-lc-rs", "rustls/prefer-post-quantum"] [dependencies] # Keep in sync with RUSTLS_CRATE_VERSION in build.rs -rustls = { version = "=0.23.31", default-features = false, features = ["std", "tls12"] } +rustls = { version = "=0.23.33", default-features = false, features = ["std", "tls12"] } webpki = { workspace = true } libc = { workspace = true } log = { workspace = true } diff --git a/librustls/build.rs b/librustls/build.rs index 1939b2f7..6995fcb2 100644 --- a/librustls/build.rs +++ b/librustls/build.rs @@ -8,7 +8,7 @@ use std::{env, fs, path::PathBuf}; // because doing so would require a heavy-weight deserialization lib dependency // (and it couldn't be a _dev_ dep for use in a build script) or doing brittle // by-hand parsing. -const RUSTLS_CRATE_VERSION: &str = "0.23.31"; +const RUSTLS_CRATE_VERSION: &str = "0.23.33"; fn main() { let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());