Skip to content

Commit

Permalink
rustls: update rustls-ffi 0.10.0
Browse files Browse the repository at this point in the history
This brings in version 0.21.0 of the upstream rustls implementation,
which notable includes support for IP address certificates.

Closes #10865
  • Loading branch information
jsha authored and bagder committed Jul 22, 2023
1 parent bc642cb commit 69c536b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions docs/RUSTLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 69c536b

Please sign in to comment.