-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
40 lines (36 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "rexie"
version = "0.6.2"
authors = ["Devashish Dixit <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Rexie is an easy-to-use, futures based wrapper around IndexedDB that compiles to webassembly"
homepage = "https://github.com/devashishdxt/rexie"
repository = "https://github.com/devashishdxt/rexie"
categories = ["asynchronous", "database", "wasm", "web-programming"]
keywords = ["wasm", "indexeddb", "futures", "idb", "indexed"]
readme = "README.md"
include = [
"Cargo.toml",
"src/**/*.rs",
"tests/**/*.rs",
"README.md",
"LICENSE_*",
]
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
idb = { version = "0.6", features = ["builder"] }
thiserror = "1"
wasm-bindgen = "0.2"
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde-wasm-bindgen = "0.6"
wasm-bindgen-test = "0.3"
js-sys = "0.3"
num-traits = { version = "0.2", default-features = false }
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"