Update matrix-sdk to latest Git

There have been major changes since the last release a year ago; including
a switch from sled to sqlite, which will make it easier to inspect the data
This commit is contained in:
2023-10-31 18:56:47 +01:00
parent a024e9ef45
commit 34f7377d05
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ nonempty = { version = "0.8.1", features = ["serialize"] }
signal-hook = "0.3.17"
# Matrix
matrix-sdk = { version = "0.6.2", features = ["eyre", "markdown"] }
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "91e7f2f7224b8ada17ab639d60da10dad98aeaf9", features = ["eyre", "markdown"] }
# UI
crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }

View File

@ -63,6 +63,7 @@ impl App {
.await
.with_context(|| format!("Could not initialize client for {}", server_name))?;
client
.matrix_auth()
.login_username(&conf.user_id, &conf.password)
.initial_device_display_name(&conf.device_name)
.send()
@ -274,7 +275,7 @@ impl App {
&self,
action_tx: &mpsc::UnboundedSender<Action>,
client: matrix_sdk::Client,
sync_response: matrix_sdk::deserialized_responses::SyncResponse,
sync_response: matrix_sdk::sync::SyncResponse,
) -> Result<()> {
println!("{:?}", sync_response);
Ok(())