1diff --git a/Cargo.lock b/Cargo.lock
2index 208ef4ff..b5045040 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5@@ -2124,19 +2124,6 @@ dependencies = [
6 "web-sys",
7 ]
8
9-[[package]]
10-name = "indexed_db_futures"
11-version = "0.2.3"
12-source = "git+https://github.com/Hywan/rust-indexed-db?branch=feat-factory-nodejs#5dab67890cea0ab88b967031adc09179a537d77c"
13-dependencies = [
14- "cfg-if",
15- "js-sys",
16- "uuid 0.8.2",
17- "wasm-bindgen",
18- "wasm-bindgen-futures",
19- "web-sys",
20-]
21-
22 [[package]]
23 name = "indexmap"
24 version = "1.9.1"
25@@ -2726,8 +2713,7 @@ dependencies = [
26 "derive_builder",
27 "getrandom 0.2.7",
28 "gloo-utils",
29- "indexed_db_futures 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
30- "indexed_db_futures 0.2.3 (git+https://github.com/Hywan/rust-indexed-db?branch=feat-factory-nodejs)",
31+ "indexed_db_futures",
32 "js-sys",
33 "matrix-sdk-base",
34 "matrix-sdk-common",
35diff --git a/crates/matrix-sdk-indexeddb/Cargo.toml b/crates/matrix-sdk-indexeddb/Cargo.toml
36index 5b0ef4f4..da73979b 100644
37--- a/crates/matrix-sdk-indexeddb/Cargo.toml
38+++ b/crates/matrix-sdk-indexeddb/Cargo.toml
39@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
40 [features]
41 default = ["e2e-encryption"]
42 e2e-encryption = ["matrix-sdk-base/e2e-encryption", "dep:matrix-sdk-crypto", "dashmap"]
43-experimental-nodejs = ["indexed_db_futures_nodejs"]
44+experimental-nodejs = []
45
46 [dependencies]
47 anyhow = "1.0.57"
48@@ -26,7 +26,6 @@ dashmap = { version = "5.2.0", optional = true }
49 derive_builder = "0.11.2"
50 gloo-utils = { version = "0.1", features = ["serde"] }
51 indexed_db_futures = "0.2.3"
52-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 }
53 js-sys = { version = "0.3.58" }
54 matrix-sdk-base = { version = "0.6.0", path = "../matrix-sdk-base", features = ["js"] }
55 matrix-sdk-crypto = { version = "0.6.0", path = "../matrix-sdk-crypto", features = ["js"], optional = true }