2023-04-04 00:41:16 +00:00
|
|
|
[package]
|
2023-12-30 23:29:40 +00:00
|
|
|
name = "flowy-folder"
|
2023-04-04 00:41:16 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-06 03:30:13 +00:00
|
|
|
collab = { workspace = true }
|
|
|
|
collab-folder = { workspace = true }
|
|
|
|
collab-document = { workspace = true }
|
|
|
|
collab-entity = { workspace = true }
|
|
|
|
collab-plugins = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
collab-integrate = { workspace = true }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-folder-pub = { workspace = true }
|
2024-04-12 08:21:41 +00:00
|
|
|
flowy-search-pub = { workspace = true }
|
2024-06-05 02:05:51 +00:00
|
|
|
flowy-sqlite = { workspace = true }
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-derive.workspace = true
|
2024-04-12 08:21:41 +00:00
|
|
|
flowy-notification = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
parking_lot.workspace = true
|
2023-04-04 00:41:16 +00:00
|
|
|
unicode-segmentation = "1.10"
|
2023-11-12 13:18:27 +00:00
|
|
|
tracing.workspace = true
|
2024-04-12 08:21:41 +00:00
|
|
|
flowy-error = { path = "../flowy-error", features = [
|
|
|
|
"impl_from_dispatch_error",
|
|
|
|
"impl_from_collab_folder",
|
|
|
|
] }
|
2023-09-17 09:14:34 +00:00
|
|
|
lib-dispatch = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
bytes.workspace = true
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2024-02-03 21:50:23 +00:00
|
|
|
tokio = { workspace = true, features = ["sync"] }
|
2023-04-04 00:41:16 +00:00
|
|
|
nanoid = "0.4.0"
|
|
|
|
lazy_static = "1.4.0"
|
2024-04-12 08:21:41 +00:00
|
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
2023-04-04 00:41:16 +00:00
|
|
|
strum_macros = "0.21"
|
2023-11-12 13:18:27 +00:00
|
|
|
protobuf.workspace = true
|
|
|
|
uuid.workspace = true
|
|
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
2024-06-14 03:34:23 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-11-28 23:49:47 +00:00
|
|
|
serde_json.workspace = true
|
2024-06-14 03:34:23 +00:00
|
|
|
validator.workspace = true
|
2024-02-03 21:50:23 +00:00
|
|
|
async-trait.workspace = true
|
2023-04-04 00:41:16 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-codegen.workspace = true
|
2023-04-04 00:41:16 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
2024-02-03 21:50:23 +00:00
|
|
|
tauri_ts = ["flowy-codegen/ts", "flowy-notification/tauri_ts"]
|
|
|
|
web_ts = ["flowy-codegen/ts", "flowy-notification/web_ts"]
|
2024-01-22 05:34:15 +00:00
|
|
|
test_helper = []
|