2023-04-13 10:53:51 +00:00
|
|
|
[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-document = { version = "0.1.0" }
|
2023-05-15 14:16:05 +00:00
|
|
|
appflowy-integrate = {version = "0.1.0" }
|
2023-04-13 10:53:51 +00:00
|
|
|
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
2023-04-13 10:53:51 +00:00
|
|
|
flowy-notification = { path = "../flowy-notification" }
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-error = { path = "../flowy-error", features = ["adaptor_serde", "adaptor_database", "adaptor_dispatch", "collab"] }
|
2023-04-13 10:53:51 +00:00
|
|
|
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"}
|
2023-04-14 12:14:47 +00:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2023-04-24 06:25:00 +00:00
|
|
|
tokio = { version = "1.26", features = ["full"] }
|
2023-05-23 08:13:12 +00:00
|
|
|
anyhow = "1.0"
|
2023-06-01 12:18:40 +00:00
|
|
|
indexmap = {version = "1.9.2", features = ["serde"]}
|
2023-04-24 06:25:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.4.0"
|
|
|
|
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
2023-04-13 10:53:51 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
|
2023-04-13 10:53:51 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
2023-04-24 06:25:00 +00:00
|
|
|
ts = ["flowy-codegen/ts", "flowy-notification/ts"]
|
|
|
|
|