mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
edc7933c66
* refactor: using tokio-postgres * chore: update * chore: update env * chore: update * chore: upgrade supabase and add logout button * refactor: update * chore: update * refactor: using message queue to handle the pg connection * refactor: move test * refactor: update sql * chore: create pg database when user login * chore: update scheme * chore: generic user service * chore: update * chore: create statistics * chore: create snapshot * chore: add test * chore: add database cloud service * chore: add document cloud service * chore: update interface * test: add document test * refactor: document interface * chore: fix test * chore: update * chore: update test * test: add test * test: add test * test: add test * chore: update collab rev * fix: flutter analyzer * chore: update * chore: update * chore: update * fix: tests * chore: update * chore: update collab rev * ci: rust fmt --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "flowy-document2"
|
|
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-document = { version = "0.1.0" }
|
|
appflowy-integrate = {version = "0.1.0" }
|
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
|
flowy-notification = { path = "../flowy-notification" }
|
|
flowy-error = { path = "../flowy-error", features = ["adaptor_serde", "adaptor_database", "adaptor_dispatch", "collab"] }
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
|
|
protobuf = {version = "2.28.0"}
|
|
bytes = { version = "1.4" }
|
|
nanoid = "0.4.0"
|
|
parking_lot = "0.12.1"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = {version = "1.0"}
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tokio = { version = "1.26", features = ["full"] }
|
|
anyhow = "1.0"
|
|
indexmap = {version = "1.9.2", features = ["serde"]}
|
|
uuid = { version = "1.3.3", features = ["v4"] }
|
|
futures = "0.3.26"
|
|
tokio-stream = { version = "0.1.14", features = ["sync"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.4.0"
|
|
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
|
|
|
[build-dependencies]
|
|
flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
|
|
|
|
[features]
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
ts = ["flowy-codegen/ts", "flowy-notification/ts"]
|
|
|