Skip to content

Commit 9fd25e7

Browse files
committed
upgrade rustls 0.23.31 -> 0.23.33
No functional changes for rustls-ffi.
1 parent 41a8657 commit 9fd25e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

librustls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ prefer-post-quantum = ["aws-lc-rs", "rustls/prefer-post-quantum"]
3030

3131
[dependencies]
3232
# Keep in sync with RUSTLS_CRATE_VERSION in build.rs
33-
rustls = { version = "=0.23.31", default-features = false, features = ["std", "tls12"] }
33+
rustls = { version = "=0.23.33", default-features = false, features = ["std", "tls12"] }
3434
webpki = { workspace = true }
3535
libc = { workspace = true }
3636
log = { workspace = true }

librustls/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::{env, fs, path::PathBuf};
88
// because doing so would require a heavy-weight deserialization lib dependency
99
// (and it couldn't be a _dev_ dep for use in a build script) or doing brittle
1010
// by-hand parsing.
11-
const RUSTLS_CRATE_VERSION: &str = "0.23.31";
11+
const RUSTLS_CRATE_VERSION: &str = "0.23.33";
1212

1313
fn main() {
1414
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());

0 commit comments

Comments
 (0)