Addressing review comments

This commit is contained in:
Benjamin Kampmann 2022-04-20 15:27:41 +02:00
parent ae8943e050
commit 115300fa5e
3 changed files with 2 additions and 5 deletions

View File

@ -26,7 +26,7 @@ The rust-sdk consists of multiple crates that can be picked at your convenience:
## Minimum Supported Rust Version (MSRV)
These crates are build with Rust language version 2021 and require a minimum compiler version of `> 1.60`
These crates are build with Rust language version 2021 and require a minimum compiler version of `1.60`
## Status

View File

@ -6,7 +6,7 @@ keywords = ["matrix", "chat", "messaging", "ruma", "nio", "appservice"]
license = "Apache-2.0"
name = "matrix-sdk-appservice"
version = "0.1.0"
rust-version = "1.56"
rust-version = "1.60"
[features]
default = ["native-tls"]

View File

@ -35,9 +35,6 @@ pub enum OpenStoreError {
Sled(#[from] SledError),
}
// FIXME Move these two methods back to the matrix-sdk-sled crate once weak
// dependency features are stable and we decide to bump the MSRV.
/// Create a [`StoreConfig`] with an opened sled [`StateStore`] that uses the
/// given path and passphrase. If `encryption` is enabled, a [`CryptoStore`]
/// with the same parameters is also opened.