2024-06-03 06:27:28 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-chat"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
flowy-derive.workspace = true
|
|
|
|
flowy-notification = { workspace = true }
|
|
|
|
flowy-error = { path = "../flowy-error", features = [
|
|
|
|
"impl_from_dispatch_error",
|
|
|
|
"impl_from_collab_folder",
|
|
|
|
] }
|
|
|
|
lib-dispatch = { workspace = true }
|
|
|
|
tracing.workspace = true
|
|
|
|
uuid.workspace = true
|
|
|
|
strum_macros = "0.21"
|
|
|
|
protobuf.workspace = true
|
|
|
|
bytes.workspace = true
|
2024-06-14 03:34:23 +00:00
|
|
|
validator = { workspace = true, features = ["derive"] }
|
2024-06-09 06:02:32 +00:00
|
|
|
lib-infra = { workspace = true, features = ["isolate_flutter"] }
|
2024-06-03 06:27:28 +00:00
|
|
|
flowy-chat-pub.workspace = true
|
|
|
|
dashmap = "5.5"
|
|
|
|
flowy-sqlite = { workspace = true }
|
|
|
|
tokio.workspace = true
|
|
|
|
futures.workspace = true
|
2024-06-09 06:02:32 +00:00
|
|
|
allo-isolate = { version = "^0.1", features = ["catch-unwind"] }
|
|
|
|
log = "0.4.21"
|
2024-06-03 06:27:28 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
flowy-codegen.workspace = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
|
|
tauri_ts = ["flowy-codegen/ts", "flowy-notification/tauri_ts"]
|
|
|
|
web_ts = ["flowy-codegen/ts", "flowy-notification/web_ts"]
|