Skip to content

Commit 463589e

Browse files
committed
fix(matrix-sdk-ffi): remove bundled-sqlite from default features
sqlite does not compile on wasm platforms. Therefor we probably shouldn't have it as the default since indexeddb support was added. Instead enabling it on demand together with the sqlite feature seems like a better solution Signed-off-by: MTRNord <[email protected]>
1 parent fa6d18b commit 463589e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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 @@ crate-type = [
2424
]
2525

2626
[features]
27-
default = ["bundled-sqlite", "unstable-msc4274", "experimental-element-recent-emojis"]
27+
default = ["unstable-msc4274", "experimental-element-recent-emojis"]
2828
# Use SQLite for the session storage.
2929
sqlite = ["matrix-sdk/sqlite"]
3030
# Use an embedded version of SQLite.

0 commit comments

Comments
 (0)