indexed-db 0.4.2

Bindings to IndexedDB that default the transactions to aborting and can work multi-threaded
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: fmt doc test

fmt:
    cargo fmt

doc:
    cargo doc --target wasm32-unknown-unknown

test: test-crate run-example

test-crate:
    cargo test --target wasm32-unknown-unknown

run-example:
    cargo run --target wasm32-unknown-unknown --example basic