idb 0.6.3

A futures based crate for interacting with IndexedDB on browsers using webassembly
Documentation
[dependencies.js-sys]
version = "0.3"

[dependencies.num-traits]
version = "0.2"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
features = ["sync"]
optional = true
version = "1"

[dependencies.wasm-bindgen]
version = "0.2"

[dependencies.web-sys]
features = ["DomException", "DomStringList", "Event", "IdbCursor", "IdbCursorDirection", "IdbCursorWithValue", "IdbDatabase", "IdbFactory", "IdbIndex", "IdbIndexParameters", "IdbKeyRange", "IdbObjectStore", "IdbObjectStoreParameters", "IdbOpenDbOptions", "IdbOpenDbRequest", "IdbRequestReadyState", "IdbTransaction", "IdbTransactionMode", "IdbVersionChangeEvent", "StorageType"]
version = "0.3"

[dev-dependencies.gloo]
default-features = false
features = ["timers", "futures"]
version = "0.11"

[dev-dependencies.serde]
version = "1"

[dev-dependencies.serde-wasm-bindgen]
version = "0.6"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.wasm-bindgen-test]
version = "0.3"

[features]
builder = ["futures"]
default = ["builder"]
doc = []
futures = ["tokio"]

[lib]
name = "idb"
path = "src/lib.rs"

[package]
authors = ["Devashish Dixit <devashishdxt@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "database", "wasm", "web-programming"]
description = "A futures based crate for interacting with IndexedDB on browsers using webassembly"
edition = "2021"
homepage = "https://github.com/devashishdxt/idb"
keywords = ["wasm", "indexeddb", "future", "webassembly", "idb"]
license = "MIT/Apache-2.0"
name = "idb"
readme = "README.md"
repository = "https://github.com/devashishdxt/idb"
version = "0.6.3"

[package.metadata.docs.rs]
all-features = true

[[test]]
name = "builder"
path = "tests/builder.rs"

[[test]]
name = "cursor"
path = "tests/cursor.rs"

[[test]]
name = "database"
path = "tests/database.rs"

[[test]]
name = "factory"
path = "tests/factory.rs"

[[test]]
name = "index"
path = "tests/index.rs"

[[test]]
name = "object_store"
path = "tests/object_store.rs"

[[test]]
name = "open_request"
path = "tests/open_request.rs"

[[test]]
name = "transaction"
path = "tests/transaction.rs"

[[test]]
name = "web"
path = "tests/web.rs"