From c35a4978d23f5bf75bcc96fdb8b1264cda0e3f8b Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Mon, 21 Oct 2024 12:56:01 -0400 Subject: [PATCH] update rustls 0.23.13 -> 0.23.15 No significant changes from the perspective of rustls-ffi, just better perf \o/ --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- build.rs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 556d6d01..708f2758 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -96,9 +96,9 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "brotli" -version = "6.0.0" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" +checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -523,9 +523,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.13" +version = "0.23.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8" +checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993" dependencies = [ "aws-lc-rs", "brotli", diff --git a/Cargo.toml b/Cargo.toml index e4ad2f14..3a024880 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ cert_compression = ["rustls/brotli", "rustls/zlib"] [dependencies] # Keep in sync with RUSTLS_CRATE_VERSION in build.rs -rustls = { version = "0.23.13", default-features = false, features = ["std", "tls12"] } +rustls = { version = "0.23.15", default-features = false, features = ["std", "tls12"] } pki-types = { package = "rustls-pki-types", version = "1.10", features = ["std"] } webpki = { package = "rustls-webpki", version = "0.102.0", default-features = false, features = ["std"] } libc = "0.2" diff --git a/build.rs b/build.rs index 7871c2d2..2f7598d6 100644 --- a/build.rs +++ b/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.13"; +const RUSTLS_CRATE_VERSION: &str = "0.23.15"; fn main() { let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());