From a8d14bbc4d0e35c2bad09501e3db118266bbeffc Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Fri, 7 Jun 2024 17:14:24 +0900 Subject: [PATCH] docs: add a feature rustls-platform-verifier in the list of README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5e25e0f..047c19e 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ This crate exposes a number of features to add support for different portions of | `http2` | **no** | Enables HTTP/2 support in [`hyper-util`][hyper-util] | | `webpki-tokio` | **no** | Uses a compiled-in set of root certificates trusted by Mozilla (via [`webpki-roots`][webpki-roots]) | | `native-tokio` | **yes** | Use the platform's native certificate store at runtime (via [`rustls-native-certs`][rustls-native-certs]) | +| `rustls-platform-verifier` | **no** | Use the operating system's verifier for certificate verification (via [`rustls-platform-verifier`][rustls-platform-verifier]) | | `ring` | **no** | Enables use of the [`ring`][ring] backend for [`rustls`][rustls] | | `tls12` | **yes** | Enables support for TLS 1.2 (only TLS 1.3 supported when disabled) | | `logging` | **yes** | Enables logging of protocol-level diagnostics and errors via [`log`][log] | @@ -58,5 +59,6 @@ This crate exposes a number of features to add support for different portions of [hyper-util]: https://docs.rs/hyper-util [webpki-roots]: https://docs.rs/webpki-roots [rustls-native-certs]: https://docs.rs/rustls-native-certs +[rustls-platform-verifier]: https://docs.rs/rustls-platform-verifier [ring]: https://docs.rs/ring [log]: https://docs.rs/log