2023-04-28 14:08:53 +08:00
|
|
|
[package]
|
|
|
|
name = "flowy-database2"
|
|
|
|
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 11:30:13 +08:00
|
|
|
collab = { workspace = true }
|
|
|
|
collab-database = { workspace = true }
|
|
|
|
collab-entity = { workspace = true }
|
|
|
|
collab-plugins = { workspace = true }
|
2023-09-17 17:14:34 +08:00
|
|
|
collab-integrate = { workspace = true }
|
2024-01-11 14:42:03 +08:00
|
|
|
flowy-database-pub = { workspace = true }
|
2023-04-28 14:08:53 +08:00
|
|
|
|
2023-12-31 07:29:40 +08:00
|
|
|
flowy-derive.workspace = true
|
2024-02-03 17:52:38 +01:00
|
|
|
flowy-notification = { workspace = true }
|
2023-11-12 21:18:27 +08:00
|
|
|
parking_lot.workspace = true
|
|
|
|
protobuf.workspace = true
|
2024-07-22 09:43:48 +02:00
|
|
|
flowy-error = { path = "../flowy-error", features = [
|
2024-02-03 17:52:38 +01:00
|
|
|
"impl_from_dispatch_error",
|
|
|
|
"impl_from_collab_database",
|
2024-08-11 20:39:25 +08:00
|
|
|
] }
|
2024-07-22 09:43:48 +02:00
|
|
|
|
2023-09-17 17:14:34 +08:00
|
|
|
lib-dispatch = { workspace = true }
|
2023-11-12 21:18:27 +08:00
|
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
bytes.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
serde_repr.workspace = true
|
2023-12-31 07:29:40 +08:00
|
|
|
lib-infra = { workspace = true }
|
2024-02-03 17:52:38 +01:00
|
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
2023-04-28 14:08:53 +08:00
|
|
|
rust_decimal = "1.28.1"
|
2024-02-03 17:52:38 +01:00
|
|
|
rusty-money = { version = "0.4.1", features = ["iso"] }
|
2023-04-28 14:08:53 +08:00
|
|
|
lazy_static = "1.4.0"
|
2024-02-03 17:52:38 +01:00
|
|
|
indexmap = { version = "2.1.0", features = ["serde"] }
|
|
|
|
url = { version = "2" }
|
2023-10-11 20:02:09 +08:00
|
|
|
fancy-regex = "0.11.0"
|
2023-11-12 21:18:27 +08:00
|
|
|
futures.workspace = true
|
2024-08-11 20:39:25 +08:00
|
|
|
dashmap.workspace = true
|
2023-11-12 21:18:27 +08:00
|
|
|
anyhow.workspace = true
|
2023-04-28 14:08:53 +08:00
|
|
|
async-stream = "0.3.4"
|
2024-03-12 10:59:52 +08:00
|
|
|
rayon = "1.9.0"
|
2023-04-28 14:08:53 +08:00
|
|
|
nanoid = "0.4.0"
|
2023-11-12 21:18:27 +08:00
|
|
|
async-trait.workspace = true
|
2023-05-31 16:52:37 +08:00
|
|
|
chrono-tz = "0.8.2"
|
2023-05-25 23:22:23 +08:00
|
|
|
csv = "1.1.6"
|
2023-08-27 22:31:32 +08:00
|
|
|
strum = "0.25"
|
|
|
|
strum_macros = "0.25"
|
2024-06-14 11:34:23 +08:00
|
|
|
validator = { workspace = true, features = ["derive"] }
|
2023-04-28 14:08:53 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-26 18:00:56 +08:00
|
|
|
event-integration-test = { path = "../event-integration-test", default-features = false }
|
2023-04-28 14:08:53 +08:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-12-31 07:29:40 +08:00
|
|
|
flowy-codegen.workspace = true
|
2023-04-28 14:08:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
2024-02-03 17:52:38 +01:00
|
|
|
ts = ["flowy-codegen/ts", "flowy-notification/tauri_ts"]
|