Browse Source

Upgrade ruma and matrix-sdk

And others deps with `cargo update`. Required to fix building the docs
with the latest version of Rust nightly.
fractal-13
Kévin Commaille 5 months ago
parent
commit
7c56918d25
No known key found for this signature in database
GPG Key ID: F26F4BE20A08255B
  1. 715
      Cargo.lock
  2. 24
      Cargo.toml
  3. 2
      src/session_view/create_room_dialog.rs

715
Cargo.lock generated

File diff suppressed because it is too large Load Diff

24
Cargo.toml

@ -73,9 +73,9 @@ shumate = { package = "libshumate", version = "0.7", features = ["v1_1"] }
sourceview = { package = "sourceview5", version = "0.10" }
[dependencies.matrix-sdk]
version = "0.14"
# git = "https://github.com/matrix-org/matrix-rust-sdk.git"
# rev = "a9ce1c6e5822b8eb8411c5bc257049d9a9d15884"
# version = "0.14"
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
rev = "6191e2c24e3d01e6f52ad931d0bddbb1ae85b368"
default-features = false
features = [
"e2e-encryption",
@ -89,19 +89,19 @@ features = [
]
[dependencies.matrix-sdk-store-encryption]
version = "0.14"
# git = "https://github.com/matrix-org/matrix-rust-sdk.git"
# rev = "a9ce1c6e5822b8eb8411c5bc257049d9a9d15884"
# version = "0.14"
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
rev = "6191e2c24e3d01e6f52ad931d0bddbb1ae85b368"
[dependencies.matrix-sdk-ui]
version = "0.14"
# git = "https://github.com/matrix-org/matrix-rust-sdk.git"
# rev = "a9ce1c6e5822b8eb8411c5bc257049d9a9d15884"
# version = "0.14"
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
rev = "6191e2c24e3d01e6f52ad931d0bddbb1ae85b368"
[dependencies.ruma]
version = "0.13"
# git = "https://github.com/ruma/ruma.git"
# rev = "a2fe858133ba932b4bda730dc7472c9c985739a0"
# version = "0.13"
git = "https://github.com/ruma/ruma.git"
rev = "8544b61f249c42ba58108f1cae4179ddbd312378"
features = [
"client-api-c",
"markdown",

2
src/session_view/create_room_dialog.rs

@ -188,7 +188,7 @@ mod imp {
request.visibility = Visibility::Private;
if self.encryption.is_active() {
let event = InitialStateEvent::new(
let event = InitialStateEvent::with_empty_state_key(
RoomEncryptionEventContent::with_recommended_defaults(),
);
request.initial_state = vec![event.to_raw_any()];

Loading…
Cancel
Save