From ddea1bdb9e00fa907cc18a4f9a146b92dd643980 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 8 Sep 2021 19:12:58 +0200 Subject: [PATCH] Rewrap crate feature flag docs --- matrix_sdk/src/lib.rs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/matrix_sdk/src/lib.rs b/matrix_sdk/src/lib.rs index 53890c41..167009fa 100644 --- a/matrix_sdk/src/lib.rs +++ b/matrix_sdk/src/lib.rs @@ -39,18 +39,17 @@ //! The following crate feature flags are available: //! //! * `encryption`: Enables end-to-end encryption support in the library. -//! * `sled_cryptostore`: Enables a Sled based store for the encryption -//! keys. If this is disabled and `encryption` support is enabled the keys will -//! by default be stored only in memory and thus lost after the client is -//! destroyed. +//! * `sled_cryptostore`: Enables a Sled based store for the encryption keys. +//! If this is disabled and `encryption` support is enabled the keys will by +//! default be stored only in memory and thus lost after the client is +//! destroyed. //! * `markdown`: Support for sending markdown formatted messages. //! * `socks`: Enables SOCKS support in reqwest, the default HTTP client. //! * `sso_login`: Enables SSO login with a local http server. //! * `require_auth_for_profile_requests`: Whether to send the access token in -//! the authentication -//! header when calling endpoints that retrieve profile data. This matches the -//! synapse configuration `require_auth_for_profile_requests`. Enabled by -//! default. +//! the authentication header when calling endpoints that retrieve profile +//! data. This matches the synapse configuration +//! `require_auth_for_profile_requests`. Enabled by default. //! * `appservice`: Enables low-level appservice functionality. For an //! high-level API there's the `matrix-sdk-appservice` crate