diff --git a/crates/matrix-sdk-indexeddb/Cargo.toml b/crates/matrix-sdk-indexeddb/Cargo.toml index 09af3fac1..5b0ef4f4b 100644 --- a/crates/matrix-sdk-indexeddb/Cargo.toml +++ b/crates/matrix-sdk-indexeddb/Cargo.toml @@ -24,19 +24,19 @@ async-trait = "0.1.53" base64 = "0.13.0" dashmap = { version = "5.2.0", optional = true } derive_builder = "0.11.2" +gloo-utils = { version = "0.1", features = ["serde"] } +indexed_db_futures = "0.2.3" +indexed_db_futures_nodejs = { version = "0.2.3", package = "indexed_db_futures", git = "https://github.com/Hywan/rust-indexed-db", branch = "feat-factory-nodejs", optional = true } js-sys = { version = "0.3.58" } matrix-sdk-base = { version = "0.6.0", path = "../matrix-sdk-base", features = ["js"] } matrix-sdk-crypto = { version = "0.6.0", path = "../matrix-sdk-crypto", features = ["js"], optional = true } matrix-sdk-store-encryption = { version = "0.2.0", path = "../matrix-sdk-store-encryption" } -indexed_db_futures = "0.2.3" -indexed_db_futures_nodejs = { version = "0.2.3", package = "indexed_db_futures", git = "https://github.com/Hywan/rust-indexed-db", branch = "feat-factory-nodejs", optional = true } ruma = { workspace = true } serde = "1.0.136" serde_json = "1.0.79" thiserror = "1.0.30" tracing = { workspace = true } wasm-bindgen = "0.2.83" -gloo-utils = { version = "0.1", features = ["serde"] } web-sys = { version = "0.3.57", features = ["IdbKeyRange"] } [target.'cfg(target_arch = "wasm32")'.dependencies]