docs: bump rustls to 0.14.1

Closes #16446
This commit is contained in:
Laurențiu Nicola 2025-02-24 11:51:06 +02:00 committed by Daniel Stenberg
parent 5070b6ac45
commit 46f17ef010
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -9,7 +9,7 @@ SPDX-License-Identifier: curl
[Rustls is a TLS backend written in Rust](https://docs.rs/rustls/). curl can [Rustls is a TLS backend written in Rust](https://docs.rs/rustls/). curl can
be built to use it as an alternative to OpenSSL or other TLS backends. We use be built to use it as an alternative to OpenSSL or other TLS backends. We use
the [rustls-ffi C bindings](https://github.com/rustls/rustls-ffi/). This the [rustls-ffi C bindings](https://github.com/rustls/rustls-ffi/). This
version of curl depends on version v0.14.0 of rustls-ffi. version of curl is compatible with `rustls-ffi` v0.14.x.
# Building with Rustls # Building with Rustls
@ -17,7 +17,7 @@ First, [install Rust](https://rustup.rs/).
Next, check out, build, and install the appropriate version of rustls-ffi: Next, check out, build, and install the appropriate version of rustls-ffi:
% git clone https://github.com/rustls/rustls-ffi -b v0.14.0 % git clone https://github.com/rustls/rustls-ffi -b v0.14.1
% cd rustls-ffi % cd rustls-ffi
% make % make
% make DESTDIR=${HOME}/rustls-ffi-built/ install % make DESTDIR=${HOME}/rustls-ffi-built/ install