mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* chore: create web folder * fix: support lib-dispatch and notification compiling to wasm * refactor: wasm * refactor: call async evnet * chore: add web ci * ci: fix * ci: fix * ci: fix --------- Co-authored-by: nathan <nathan@appflowy.io>
26 lines
819 B
TOML
26 lines
819 B
TOML
[package]
|
|
name = "appflowy-wasm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { version = "0.2.89" }
|
|
lazy_static = "1.4.0"
|
|
lib-dispatch = { workspace = true, features = ["single_thread"] }
|
|
parking_lot.workspace = true
|
|
tracing.workspace = true
|
|
tracing-core = { version = "0.1.32" }
|
|
tracing-wasm = "0.2.1"
|
|
flowy-notification = { workspace = true, features = ["ts"] }
|
|
serde.workspace = true
|
|
|
|
[workspace.dependencies]
|
|
lib-dispatch = { path = "../../rust-lib/lib-dispatch" }
|
|
parking_lot = { version = "0.12.1" }
|
|
tracing = { version = "0.1.22" }
|
|
flowy-notification = { path = "../../rust-lib/flowy-notification" }
|
|
serde = { version = "1.0.194", features = ["derive"] } |