diff --git a/site/content/_index.md b/site/content/_index.md index ff8c2a52..c0bc5aef 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -19,6 +19,17 @@ Download the sources and build them yourself: cargo install --locked trunk ``` +You can also toggle some features using the `--features` flag: + +
+
rustls (default)
Use rustls for client and server sockets
+
native-tls
Enable the use of the system native TLS stack for client sockets, and `openssl` for server sockets
+
update_check (default)
Enable the update check on startup
+
+ +**NOTE:** If both `rustls` and `native-tls` are enabled, `rustls` will be used. You can disable the default `rustls` using +`--no-default-features`. + ### Cargo binstall You can download a released binary from GitHub releases through [`binstall`](https://github.com/cargo-bins/cargo-binstall).