Skip to content

Commit 2b03287

Browse files
committed
Cargo: update rustls 0.23.15 -> 0.23.16
See https://github.com/rustls/rustls/releases/tag/v%2F0.23.16
1 parent f1dc59b commit 2b03287

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cert_compression = ["rustls/brotli", "rustls/zlib"]
2727

2828
[dependencies]
2929
# Keep in sync with RUSTLS_CRATE_VERSION in build.rs
30-
rustls = { version = "0.23.15", default-features = false, features = ["std", "tls12"] }
30+
rustls = { version = "0.23.16", default-features = false, features = ["std", "tls12"] }
3131
pki-types = { package = "rustls-pki-types", version = "1.10", features = ["std"] }
3232
webpki = { package = "rustls-webpki", version = "0.102.0", default-features = false, features = ["std"] }
3333
libc = "0.2"

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.15";
11+
const RUSTLS_CRATE_VERSION: &str = "0.23.16";
1212

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

0 commit comments

Comments
 (0)