diff --git a/README.md b/README.md index 41395634c..fe6002c25 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/crates/matrix-sdk-appservice/Cargo.toml b/crates/matrix-sdk-appservice/Cargo.toml index 5cd4f9df9..af10a9b93 100644 --- a/crates/matrix-sdk-appservice/Cargo.toml +++ b/crates/matrix-sdk-appservice/Cargo.toml @@ -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"] diff --git a/crates/matrix-sdk-sled/src/lib.rs b/crates/matrix-sdk-sled/src/lib.rs index 831accd29..72c595dfa 100644 --- a/crates/matrix-sdk-sled/src/lib.rs +++ b/crates/matrix-sdk-sled/src/lib.rs @@ -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.