chore(examples): Upgrade to Rust edition 2024

This commit is contained in:
Jonas Platte
2025-06-29 18:28:22 +02:00
committed by Damir Jelić
parent 06732ca71a
commit 4a1249fa96
30 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -13,14 +13,14 @@
use std::{env, process::exit};
use matrix_sdk::{
Client, Room, RoomState,
config::SyncSettings,
ruma::events::room::{
member::StrippedRoomMemberEvent,
message::{MessageType, OriginalSyncRoomMessageEvent, RoomMessageEventContent},
},
Client, Room, RoomState,
};
use tokio::time::{sleep, Duration};
use tokio::time::{Duration, sleep};
/// This is the starting point of the app. `main` is called by rust binaries to
/// run the program in this case, we use tokio (a reactor) to allow us to use