Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,7 @@ allow-git = [
# on releases.
"https://github.com/matrix-org/vodozemac",
# A patch override for the bindings: https://github.com/Alorel/rust-indexed-db/pull/72
"https://github.com/matrix-org/rust-indexed-db"
"https://github.com/matrix-org/rust-indexed-db",
# Required for the unstable-uniffi feature in ruma
"https://github.com/mozilla/uniffi-rs"
]
142 changes: 109 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ rand = { version = "0.8.5", default-features = false, features = ["std", "std_rn
regex = { version = "1.12.2", default-features = false }
reqwest = { version = "0.12.24", default-features = false }
rmp-serde = { version = "1.3.0", default-features = false }
ruma = { git = "https://github.com/ruma/ruma", rev = "289bee87974bd3c2ad14a6c15801c80b683b67dc", features = [
ruma = { git = "https://github.com/ruma/ruma", rev = "43d940f79847e7ff1443266a84591f049018830d", features = [
"client-api-c",
"compat-unset-avatar",
"compat-upload-signatures",
Expand Down Expand Up @@ -113,7 +113,7 @@ tracing-core = { version = "0.1.34", default-features = false }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["std", "smallvec", "fmt"] }
unicode-normalization = { version = "0.1.25", default-features = false }
unicode-segmentation = { version = "1.12.0", default-features = false }
uniffi = { version = "0.31.0", default-features = false, features = ["cargo-metadata"] }
uniffi = { git = "https://github.com/mozilla/uniffi-rs", rev = "e5f4821410bea19e71984ea5e06a7bc8b11ed9e5", default-features = false, features = ["cargo-metadata"] }
uniffi_bindgen = { version = "0.31.0", default-features = false, features = ["cargo-metadata"] }
url = { version = "2.5.7", default-features = false }
uuid = { version = "1.18.1", default-features = false }
Expand Down
2 changes: 2 additions & 0 deletions bindings/matrix-sdk-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ All notable changes to this project will be documented in this file.

### Features

- Enable `unstable-uniffi` feature in ruma and use ruma types directly in the power levels API.
([#6161](https://github.com/matrix-org/matrix-rust-sdk/pull/6161/))
- Add `Client::subscribe_to_duplicate_key_upload_errors` for listening to duplicate key
upload errors from `/keys/upload`.
([#6135](https://github.com/matrix-org/matrix-rust-sdk/pull/6135/))
Expand Down
1 change: 1 addition & 0 deletions bindings/matrix-sdk-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ ruma = { workspace = true, features = [
"unstable-msc2545",
# Room language event type
"unstable-msc4334",
"unstable-uniffi",
] }
serde.workspace = true
serde_json.workspace = true
Expand Down
Loading
Loading