From 45dad40cb544ac6bee91afb961a589938cbb514d Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Wed, 2 Mar 2022 16:47:46 +0100 Subject: [PATCH] chore: update README --- README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 318b9250..d88311f5 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,20 @@ Features -------- Tungstenite provides a complete implementation of the WebSocket specification. -TLS is supported on all platforms using native-tls or rustls available through the `native-tls` -and `rustls-tls` feature flags. By default **no TLS feature is activated**, so make sure you -use `native-tls` or `rustls-tls` feature if you need support of the TLS. +TLS is supported on all platforms using `native-tls` or `rustls`. The following +features are available: -There is no support for permessage-deflate at the moment. It's planned. +* `native-tls` +* `native-tls-vendored` +* `rustls-tls-native-roots` +* `rustls-tls-webpki-roots` + +Choose the one that is appropriate for your needs. + +By default **no TLS feature is activated**, so make sure you use `native-tls` or +`rustls-tls` feature if you need support of the TLS. + +There is no support for permessage-deflate at the moment, but the PRs are welcome :wink: Testing -------