idb 0.6.5

A futures based crate for interacting with IndexedDB on browsers using webassembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg(target_arch = "wasm32")]

mod builder;
mod cursor;
mod database;
mod factory;
mod index;
mod object_store;
mod open_request;
mod transaction;

use wasm_bindgen_test::wasm_bindgen_test_configure;

wasm_bindgen_test_configure!(run_in_browser);