Skip to content

Commit 803af3e

Browse files
committed
cargo: rustls 0.23.12 -> 0.23.13
1 parent 99f40a2 commit 803af3e

File tree

4 files changed

+17
-30
lines changed

4 files changed

+17
-30
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Changelog
22

3-
## 0.14.0-rc1 (2024-09-09)
3+
## 0.14.0-rc1 (pending)
44

5-
This release updates to [Rustls 0.23.12][] and changes the rustls-ffi API to allow
5+
This release updates to [Rustls 0.23.13][] and changes the rustls-ffi API to allow
66
choosing a cryptography provider to use with Rustls.
77

88
The default provider has been changed to match the Rustls default,
99
[`aws-lc-rs`][]. Users that wish to continue using `*ring*` as the provider may
1010
opt-in. See the `README` for more detail on supported platforms and build
1111
requirements.
1212

13-
[Rustls 0.23.12]: https://github.com/rustls/rustls/releases/tag/v%2F0.23.12
13+
[Rustls 0.23.13]: https://github.com/rustls/rustls/releases/tag/v%2F0.23.13
1414
[`aws-lc-rs`]: https://github.com/aws/aws-lc-rs
1515

1616
### Added

Cargo.lock

Lines changed: 12 additions & 25 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
@@ -26,7 +26,7 @@ aws-lc-rs = ["rustls/aws-lc-rs", "webpki/aws_lc_rs"]
2626

2727
[dependencies]
2828
# Keep in sync with RUSTLS_CRATE_VERSION in build.rs
29-
rustls = { version = "0.23.12", default-features = false, features = ["std", "tls12"] }
29+
rustls = { version = "0.23.13", default-features = false, features = ["std", "tls12"] }
3030
pki-types = { package = "rustls-pki-types", version = "1", features = ["std"] }
3131
webpki = { package = "rustls-webpki", version = "0.102.0", default-features = false, features = ["std"] }
3232
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.12";
11+
const RUSTLS_CRATE_VERSION: &str = "0.23.13";
1212

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

0 commit comments

Comments
 (0)