2023-03-03 12:38:31 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-core"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-17 09:14:34 +00:00
|
|
|
lib-dispatch = { workspace = true }
|
|
|
|
lib-log = { workspace = true }
|
|
|
|
flowy-user = { workspace = true }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-user-pub = { workspace = true }
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-folder = { workspace = true }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-folder-pub = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-database2 = { workspace = true }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-database-pub = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-sqlite = { workspace = true }
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-document = { workspace = true }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-document-pub = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-error = { workspace = true }
|
2024-01-29 21:36:27 +00:00
|
|
|
flowy-server = { workspace = true, features = ["enable_supabase"] }
|
2024-01-11 06:42:03 +00:00
|
|
|
flowy-server-pub = { workspace = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-config = { workspace = true }
|
2023-10-02 07:12:24 +00:00
|
|
|
flowy-date = { workspace = true }
|
2024-01-06 03:50:05 +00:00
|
|
|
collab-integrate = { workspace = true }
|
2024-04-12 08:21:41 +00:00
|
|
|
flowy-search = { workspace = true }
|
2024-06-12 23:37:19 +00:00
|
|
|
flowy-search-pub = { workspace = true }
|
2024-05-06 03:30:13 +00:00
|
|
|
collab-entity = { workspace = true }
|
2024-08-20 13:45:14 +00:00
|
|
|
collab-plugins = { workspace = true }
|
2024-05-06 03:30:13 +00:00
|
|
|
collab = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
diesel.workspace = true
|
|
|
|
uuid.workspace = true
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-storage = { workspace = true }
|
2024-06-19 23:44:57 +00:00
|
|
|
flowy-storage-pub = { workspace = true }
|
2024-05-07 09:37:11 +00:00
|
|
|
client-api.workspace = true
|
2024-08-01 15:13:35 +00:00
|
|
|
flowy-ai = { workspace = true }
|
|
|
|
flowy-ai-pub = { workspace = true }
|
|
|
|
appflowy-local-ai = { version = "0.1.0" }
|
|
|
|
|
2023-03-03 12:38:31 +00:00
|
|
|
|
2023-11-12 13:18:27 +00:00
|
|
|
tracing.workspace = true
|
2023-03-03 12:38:31 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2023-11-12 13:18:27 +00:00
|
|
|
bytes.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2024-04-12 08:21:41 +00:00
|
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
2023-11-12 10:00:07 +00:00
|
|
|
console-subscriber = { version = "0.2", optional = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
anyhow.workspace = true
|
2024-08-18 03:16:42 +00:00
|
|
|
dashmap.workspace = true
|
|
|
|
arc-swap.workspace = true
|
2023-11-12 10:00:07 +00:00
|
|
|
base64 = "0.21.5"
|
2023-03-03 12:38:31 +00:00
|
|
|
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
serde_repr.workspace = true
|
|
|
|
futures.workspace = true
|
2023-11-12 10:00:07 +00:00
|
|
|
walkdir = "2.4.0"
|
2024-02-26 07:27:12 +00:00
|
|
|
sysinfo = "0.30.5"
|
2024-04-04 05:03:40 +00:00
|
|
|
semver = "1.0.22"
|
2023-03-03 12:38:31 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
profiling = ["console-subscriber", "tokio/tracing"]
|
2023-05-16 06:58:24 +00:00
|
|
|
http_sync = []
|
|
|
|
native_sync = []
|
2023-03-03 12:38:31 +00:00
|
|
|
dart = [
|
2024-04-12 08:21:41 +00:00
|
|
|
"flowy-user/dart",
|
|
|
|
"flowy-date/dart",
|
|
|
|
"flowy-search/dart",
|
2023-12-30 23:29:40 +00:00
|
|
|
"flowy-folder/dart",
|
2023-04-28 06:08:53 +00:00
|
|
|
"flowy-database2/dart",
|
2024-08-01 15:13:35 +00:00
|
|
|
"flowy-ai/dart",
|
2024-07-22 07:43:48 +00:00
|
|
|
"flowy-storage/dart",
|
2023-03-03 12:38:31 +00:00
|
|
|
]
|
|
|
|
ts = [
|
2024-01-29 21:36:27 +00:00
|
|
|
"flowy-user/tauri_ts",
|
2024-02-03 21:50:23 +00:00
|
|
|
"flowy-folder/tauri_ts",
|
2024-04-12 08:21:41 +00:00
|
|
|
"flowy-search/tauri_ts",
|
2023-04-28 06:08:53 +00:00
|
|
|
"flowy-database2/ts",
|
2024-01-29 21:36:27 +00:00
|
|
|
"flowy-config/tauri_ts",
|
2024-08-01 15:13:35 +00:00
|
|
|
"flowy-ai/tauri_ts",
|
2024-07-22 07:43:48 +00:00
|
|
|
"flowy-storage/tauri_ts",
|
2023-03-03 12:38:31 +00:00
|
|
|
]
|
2024-04-02 02:14:09 +00:00
|
|
|
openssl_vendored = ["flowy-sqlite/openssl_vendored"]
|
2024-04-07 13:36:55 +00:00
|
|
|
|
|
|
|
# Enable/Disable AppFlowy Verbose Log Configuration
|
|
|
|
verbose_log = [
|
2024-04-24 06:38:47 +00:00
|
|
|
"flowy-document/verbose_log",
|
2024-08-25 06:28:51 +00:00
|
|
|
"flowy-database2/verbose_log",
|
2024-04-07 13:36:55 +00:00
|
|
|
"client-api/sync_verbose_log"
|
2024-04-12 08:21:41 +00:00
|
|
|
]
|