Enable 'unstable-pre-spec' ruma feature

This commit is contained in:
Julian Sparber
2022-02-23 15:52:19 +01:00
parent 8414718371
commit 0dd623970b
3 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional =
[dependencies.ruma]
git = "https://github.com/ruma/ruma/"
rev = "b9f32bc6327542d382d4eb42ec43623495c50e66"
features = ["client-api-c"]
features = ["client-api-c", "unstable-pre-spec"]
[dev-dependencies]
futures = { version = "0.3.15", default-features = false, features = ["executor"] }

View File

@@ -79,7 +79,7 @@ impl BaseRoomInfo {
true
}
AnyStateEventContent::RoomAvatar(a) => {
self.avatar_url = Some(a.url.clone());
self.avatar_url = a.url.clone();
true
}
AnyStateEventContent::RoomName(n) => {

View File

@@ -101,7 +101,7 @@ default_features = false
[dependencies.ruma]
git = "https://github.com/ruma/ruma/"
rev = "b9f32bc6327542d382d4eb42ec43623495c50e66"
features = ["client-api-c", "compat", "rand", "unstable-msc2448"]
features = ["client-api-c", "compat", "rand", "unstable-msc2448", "unstable-pre-spec"]
[dependencies.tokio-stream]
version = "0.1.6"