Merge branch 'aledomu-master' into master
commit
9a5345ec77
|
@ -20,6 +20,7 @@ default = ["encryption", "sqlite_cryptostore", "messages", "native-tls"]
|
|||
messages = ["matrix-sdk-base/messages"]
|
||||
encryption = ["matrix-sdk-base/encryption", "dashmap"]
|
||||
sqlite_cryptostore = ["matrix-sdk-base/sqlite_cryptostore"]
|
||||
unstable-synapse-quirks = ["matrix-sdk-base/unstable-synapse-quirks"]
|
||||
native-tls = ["reqwest/native-tls"]
|
||||
rustls-tls = ["reqwest/rustls-tls"]
|
||||
socks = ["reqwest/socks"]
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
//! 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.
|
||||
//! * `unstable-synapse-quirks`: Enables support to deal with inconsistencies
|
||||
//! of Synapse in compliance with the Matrix API specification.
|
||||
//! * `socks`: Enables SOCKS support in reqwest, the default HTTP client.
|
||||
|
||||
#![deny(
|
||||
|
|
|
@ -19,6 +19,7 @@ default = ["encryption", "sqlite_cryptostore", "messages"]
|
|||
messages = []
|
||||
encryption = ["matrix-sdk-crypto"]
|
||||
sqlite_cryptostore = ["matrix-sdk-crypto/sqlite_cryptostore"]
|
||||
unstable-synapse-quirks = ["matrix-sdk-common/unstable-synapse-quirks"]
|
||||
|
||||
docs = ["encryption", "sqlite_cryptostore", "messages"]
|
||||
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
//! 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.
|
||||
//! * `unstable-synapse-quirks`: Enables support to deal with inconsistencies
|
||||
//! of Synapse in compliance with the Matrix API specification.
|
||||
#![deny(
|
||||
missing_debug_implementations,
|
||||
dead_code,
|
||||
|
|
|
@ -10,6 +10,9 @@ readme = "README.md"
|
|||
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
||||
version = "0.1.0"
|
||||
|
||||
[features]
|
||||
unstable-synapse-quirks = ["ruma/unstable-synapse-quirks"]
|
||||
|
||||
[dependencies]
|
||||
assign = "1.1.0"
|
||||
instant = { version = "0.1.6", features = ["wasm-bindgen", "now"] }
|
||||
|
|
Loading…
Reference in New Issue