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