mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
ec89e9517b
* feat: init flowy document 2 * feat: convert inner document to document PB * feat: integrate colla document into Flutter * feat: integrate colla document into tauri * fix: cargo clippy
33 lines
992 B
TOML
33 lines
992 B
TOML
[package]
|
|
name = "flowy-document2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
collab = { version = "0.1.0" }
|
|
collab-persistence = { version = "0.1.0" }
|
|
collab-document = { version = "0.1.0" }
|
|
|
|
flowy-derive = { path = "../flowy-derive" }
|
|
flowy-notification = { path = "../flowy-notification" }
|
|
flowy-error = { path = "../flowy-error", features = ["adaptor_sync", "adaptor_ot", "adaptor_serde", "adaptor_database", "adaptor_dispatch"] }
|
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
|
|
|
protobuf = {version = "2.28.0"}
|
|
bytes = { version = "1.4" }
|
|
nanoid = "0.4.0"
|
|
parking_lot = "0.12.1"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = {version = "1.0"}
|
|
|
|
[build-dependencies]
|
|
flowy-codegen = { path = "../flowy-codegen"}
|
|
|
|
[features]
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
ts = ["flowy-codegen/ts", "flowy-notification/ts"] |