matrix-rust-sdk/crates/matrix-sdk-indexeddb
Jonas Platte 052832b4d3 fix: Don't log raw events that fail deserialization
… but do log relevant parts to allow debugging.
2023-02-03 14:35:10 +01:00
..
src fix: Don't log raw events that fail deserialization 2023-02-03 14:35:10 +01:00
Cargo.toml refactor: Use workspace dependencies for more crates 2023-01-10 10:19:02 +01:00
README.md chore: Remove experimental-timeline Cargo feature 2022-09-30 13:48:17 +02:00

README.md

matrix-sdk-indexedddb

This crate implements a storage backend on IndexedDB for web environments using the matrix-sdk-base primitives.

Usage

The most common usage pattern would be to have this included via matrix-sdk in your Cargo.toml and leave instantiation to it.

[target.'cfg(target_arch = "wasm32")'.dependencies]
matrix-sdk = { version = "0.5, default-features = false, features = ["indexeddb", "e2e-encryption"] }

Crate Feature Flags

The following crate feature flags are available:

  • e2e-encryption: (on by default) Enables the store for end-to-end encrypted data.