mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-04 22:18:22 +00:00
21 lines
581 B
TOML
21 lines
581 B
TOML
|
|
[package]
|
||
|
|
name = "af-persistence"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
indexed_db_futures = { version = "0.4" }
|
||
|
|
js-sys = "0.3"
|
||
|
|
wasm-bindgen = "0.2"
|
||
|
|
web-sys = { version = "0.3", features = ["console", "Window"] }
|
||
|
|
tokio = { version = "1.26.0", features = ["sync", "rt"] }
|
||
|
|
flowy-error.workspace = true
|
||
|
|
thiserror.workspace = true
|
||
|
|
anyhow.workspace = true
|
||
|
|
serde.workspace = true
|
||
|
|
serde_json.workspace = true
|
||
|
|
futures-util.workspace = true
|
||
|
|
wasm-bindgen-futures.workspace = true
|