summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Hoffman-Andrews <github@hoffman-andrews.com>2021-05-14 18:45:49 -0700
committerDaniel Stenberg <daniel@haxx.se>2021-05-24 16:40:59 +0200
commita62e6435f4c110d14644bc8298d83c2e7b18dee5 (patch)
treedc8ba45c997b195d49ee57fd6d607da07ae6a6de /docs
parent98770344b2d6527c5b504fa740d7bbddbee1728e (diff)
downloadcurl-a62e6435f4c110d14644bc8298d83c2e7b18dee5.tar.gz
rustls: switch read_tls and write_tls to callbacks
And update to 0.6.0, including a rename from session to connection for many fields. Closes #7071
Diffstat (limited to 'docs')
-rw-r--r--docs/RUSTLS.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/RUSTLS.md b/docs/RUSTLS.md
index 569002c06..c12b70a60 100644
--- a/docs/RUSTLS.md
+++ b/docs/RUSTLS.md
@@ -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 [crustls C bindings](https://github.com/abetterinternet/crustls/). This
-version of curl depends on version v0.5.0 of crustls.
+version of curl depends on version v0.6.0 of crustls.
# Building with rustls
@@ -12,7 +12,7 @@ First, [install Rust](https://rustup.rs/).
Next, check out, build, and install the appropriate version of crustls:
% cargo install cbindgen
- % git clone https://github.com/abetterinternet/crustls/ -b v0.5.0
+ % git clone https://github.com/abetterinternet/crustls/ -b v0.6.0
% cd crustls
% make
% make DESTDIR=${HOME}/crustls-built/ install