]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
rustls: update rustls-ffi 0.10.0
authorJacob Hoffman-Andrews <github@hoffman-andrews.com>
Wed, 29 Mar 2023 21:01:55 +0000 (14:01 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 22 Jul 2023 21:40:44 +0000 (23:40 +0200)
This brings in version 0.21.0 of the upstream rustls implementation,
which notable includes support for IP address certificates.

Closes #10865

.github/workflows/linux.yml
docs/RUSTLS.md

index 8d579997418c1964d0dd53c694a3a98aa8cd280b..0940bb3417ec4d6d7c47a2e9d5895d5cdfbcba30 100644 (file)
@@ -264,7 +264,7 @@ jobs:
 
     - if: ${{ contains(matrix.build.install_steps, 'rustls') }}
       run: |
-        git clone --quiet --depth=1 -b v0.9.2 --recursive https://github.com/rustls/rustls-ffi.git
+        git clone --quiet --depth=1 -b v0.10.0 --recursive https://github.com/rustls/rustls-ffi.git
         cd rustls-ffi
         make DESTDIR=$HOME/rustls install
       name: 'install rustls'
index fec0c266adcee5bcf676d93820e89206484e2236..7a0d806b627e913bf18aa9c2190bfad592b84696 100644 (file)
@@ -3,7 +3,7 @@
 [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
 the [rustls-ffi C bindings](https://github.com/rustls/rustls-ffi/). This
-version of curl depends on version v0.9.2 of rustls-ffi.
+version of curl depends on version v0.10.0 of rustls-ffi.
 
 # Building with rustls
 
@@ -12,7 +12,7 @@ First, [install Rust](https://rustup.rs/).
 Next, check out, build, and install the appropriate version of rustls-ffi:
 
     % cargo install cbindgen
-    % git clone https://github.com/rustls/rustls-ffi -b v0.9.2
+    % git clone https://github.com/rustls/rustls-ffi -b v0.10.0
     % cd rustls-ffi
     % make
     % make DESTDIR=${HOME}/rustls-ffi-built/ install