From 745e819541b3e6e2902c04adebb54913147f9587 Mon Sep 17 00:00:00 2001 From: Jasper Hugo Date: Mon, 25 Oct 2021 10:52:45 +0700 Subject: [PATCH] corrected feature flag names --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d0956b7..ae217f8 100644 --- a/README.md +++ b/README.md @@ -99,9 +99,9 @@ gst-meet --web-socket-url=wss://your.jitsi.domain/xmpp-websocket \ By default, the system native TLS library is used. This can be turned off by passing `--no-default-features` to Cargo, and one of the following features can be enabled: ``` -tls-native-tls (the default) link to the system native TLS library -tls-native-tls-vendored automatically build a copy of OpenSSL and statically link to it -tls-rustls use rustls for TLS (note that rustls may not accept some server certificates) +tls-native (the default) link to the system native TLS library +tls-native-vendored automatically build a copy of OpenSSL and statically link to it +tls-rustls use rustls for TLS (note that rustls may not accept some server certificates) ``` These options only affect the TLS library used for the WebSocket connections (to the XMPP server and to the JVB).