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]
|
|
|
|
collab = { version = "0.1.0" }
|
|
|
|
collab-folder = { version = "0.1.0" }
|
2023-10-10 11:05:55 +00:00
|
|
|
collab-entity = { version = "0.1.0" }
|
2023-09-17 09:14:34 +00:00
|
|
|
collab-integrate = { workspace = true }
|
|
|
|
flowy-folder-deps = { workspace = true }
|
2023-04-04 00:41:16 +00:00
|
|
|
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-derive.workspace = true
|
2023-09-17 09:14:34 +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
|
2023-07-29 01:46:24 +00:00
|
|
|
flowy-error = { path = "../flowy-error", features = ["impl_from_dispatch_error"]}
|
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 }
|
2023-11-12 13:18:27 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2023-04-04 00:41:16 +00:00
|
|
|
nanoid = "0.4.0"
|
|
|
|
lazy_static = "1.4.0"
|
2023-11-12 13:18:27 +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"] }
|
2023-11-28 23:49:47 +00:00
|
|
|
serde_json.workspace = true
|
2023-12-29 05:02:27 +00:00
|
|
|
validator = "0.16.0"
|
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"]
|
|
|
|
ts = ["flowy-codegen/ts", "flowy-notification/ts"]
|
|
|
|
test_helper = []
|