Skip to content

Commit d3851c9

Browse files
Daniel SalinasDaniel Salinas
authored andcommitted
Update matrix-sdk-common utils that are in existing PRs already
1 parent b070003 commit d3851c9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

bindings/matrix-sdk-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ unstable-msc4274 = ["matrix-sdk-ui/unstable-msc4274"]
2424
[dependencies]
2525
anyhow.workspace = true
2626
as_variant.workspace = true
27-
async-compat = "0.2.4"
27+
async-compat.workspace = true
2828
extension-trait = "1.0.1"
2929
eyeball-im.workspace = true
3030
futures-util.workspace = true

crates/matrix-sdk-common/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ uniffi = { workspace = true, optional = true }
3939

4040
[target.'cfg(not(target_family = "wasm"))'.dependencies]
4141
# Enable the test macro.
42+
async-compat.workspace = true
4243
tokio = { workspace = true, features = ["rt", "time", "macros"] }
4344

4445
[target.'cfg(target_family = "wasm")'.dependencies]

crates/matrix-sdk-common/src/stream.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
//! with boxed streams across different platforms. On native platforms,
1919
//! streams can be `Send`, but on Wasm they cannot. This module abstracts
2020
//! over that difference.
21-
2221
#[cfg(not(target_family = "wasm"))]
2322
mod sys {
2423
// On native platforms, just re-export everything from futures_util

0 commit comments

Comments
 (0)