docs: updated readme - rust version (#2047)

* docs: update readme
* removing error
This commit is contained in:
Mauro 2023-06-09 15:16:09 +02:00 committed by GitHub
parent ae2f834345
commit 6444848511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 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 built with the Rust language version 2021 and require a minimum compiler version of `1.65`.
These crates are built with the Rust language version 2021 and require a minimum compiler version of `1.70`.
## Status

View File

@ -41,12 +41,12 @@ pub use matrix_sdk::ruma::{api::client::account::register, UserId};
pub use matrix_sdk_ui::timeline::PaginationOutcome;
pub use platform::*;
// Re-exports for more convenient use inside other submodules
use self::error::ClientError;
pub use self::{
authentication_service::*, client::*, event::*, notification::*, room::*, room_member::*,
session_verification::*, sliding_sync::*, timeline::*, tracing::*,
};
// Re-exports for more convenient use inside other submodules
use self::{client::Client, error::ClientError};
uniffi::include_scaffolding!("api");