2023-01-17 08:27:17 +00:00
|
|
|
[package]
|
|
|
|
name = "appflowy_tauri"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.57"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.2", features = [] }
|
|
|
|
|
2023-11-12 13:18:27 +00:00
|
|
|
[workspace.dependencies]
|
|
|
|
anyhow = "1.0.75"
|
|
|
|
tracing = "0.1.40"
|
|
|
|
bytes = "1.5.0"
|
|
|
|
serde = "1.0.108"
|
|
|
|
serde_json = "1.0.108"
|
|
|
|
protobuf = { version = "2.28.0" }
|
|
|
|
diesel = { version = "1.4.8", features = ["sqlite", "chrono"] }
|
|
|
|
uuid = { version = "1.5.0", features = ["serde", "v4"] }
|
|
|
|
serde_repr = "0.1"
|
|
|
|
parking_lot = "0.12"
|
|
|
|
futures = "0.3.29"
|
|
|
|
tokio = "1.34.0"
|
|
|
|
tokio-stream = "0.1.14"
|
|
|
|
async-trait = "0.1.74"
|
|
|
|
chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
|
2023-11-14 06:01:46 +00:00
|
|
|
lru = "0.12.0"
|
2023-11-12 13:18:27 +00:00
|
|
|
|
2023-01-17 08:27:17 +00:00
|
|
|
[dependencies]
|
2023-11-12 13:18:27 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde.workspace = true
|
2023-07-03 02:04:40 +00:00
|
|
|
tauri = { version = "1.2", features = ["fs-all", "shell-open"] }
|
Feat/appflowy tauri 2 (#1902)
* chore: rename classes to models
* refactor: add effects and reducers folder
* chore: update user data storage path
* chore: subscribe callback
* chore: nav items persist, board layout (#1879)
* chore: load workspace items, load folders and pages from workspace, load raw document data, load raw grid data
* chore: clear folders and pages before load, new folder event
* chore: update folder name backend call
* chore: folder expand animation
* chore: hide arrow on empty folder
* chore: Board page layout, board store, board sample data
* chore: board block item
* chore: test db id
* chore: persist new page, persist page rename, create workspace on read error
* chore: boardblockitem details btn
* chore: boardblockitem multiselect data and colors
* chore: board item drag
* chore: drag start on move
* chore: remove databaseId
* chore: remove databaseId
* chore: import service classes into auth hook
* chore: sign out option
* chore: login page event
* chore: signup event
* chore: make workspace hook to use service
* chore: page and folder hooks use backend services
* chore: new folder use backend service
* chore: error handler page
* chore: try catch hooks to show error page
* chore: install i18n package and use flutters i18n files
* fix: signin signup margin
* chore: fix compile errors
* chore: remove unused codes
* chore: open workspace after user register
* chore: open workspace after user register
* chore: add create grid demo
* chore: load the cell data
* chore: print the cell data
* chore: fix project errors
* fix: tauri UI issues (#1899)
* chore: load workspace items, load folders and pages from workspace, load raw document data, load raw grid data
* chore: clear folders and pages before load, new folder event
* chore: update folder name backend call
* chore: folder expand animation
* chore: hide arrow on empty folder
* chore: Board page layout, board store, board sample data
* chore: board block item
* chore: test db id
* chore: persist new page, persist page rename, create workspace on read error
* chore: boardblockitem details btn
* chore: boardblockitem multiselect data and colors
* chore: board item drag
* chore: drag start on move
* chore: remove databaseId
* chore: remove databaseId
* chore: import service classes into auth hook
* chore: sign out option
* chore: login page event
* chore: signup event
* chore: make workspace hook to use service
* chore: page and folder hooks use backend services
* chore: new folder use backend service
* chore: error handler page
* chore: try catch hooks to show error page
* chore: install i18n package and use flutters i18n files
* fix: signin signup margin
* fix: new page overflow with folder
* fix: sign out button
* fix: sign out icon
* chore: floating navigation panel
* refactor: notify with error
* chore: config window size
* fix: test demo error
* chore: update tests
---------
Co-authored-by: Askarbek Zadauly <ascarbek@gmail.com>
2023-02-28 14:42:41 +00:00
|
|
|
tauri-utils = "1.2"
|
2023-11-12 13:18:27 +00:00
|
|
|
bytes.workspace = true
|
|
|
|
tracing.workspace = true
|
2023-10-02 09:22:22 +00:00
|
|
|
lib-dispatch = { path = "../../rust-lib/lib-dispatch", features = ["use_serde"] }
|
|
|
|
flowy-core = { path = "../../rust-lib/flowy-core", features = ["rev-sqlite", "ts"] }
|
|
|
|
flowy-notification = { path = "../../rust-lib/flowy-notification", features = ["ts"] }
|
2023-11-20 12:54:47 +00:00
|
|
|
uuid = "1.5.0"
|
2023-01-17 08:27:17 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# by default Tauri runs in production mode
|
|
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
|
|
default = ["custom-protocol"]
|
|
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
|
|
# DO NOT remove this
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2023-04-04 00:41:16 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2023-10-02 09:22:22 +00:00
|
|
|
# Please using the following command to update the revision id
|
|
|
|
# Current directory: frontend
|
|
|
|
# Run the script:
|
|
|
|
# scripts/tool/update_client_api_rev.sh new_rev_id
|
|
|
|
# ⚠️⚠️⚠️️
|
2023-11-30 05:46:10 +00:00
|
|
|
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "62abd8abbf4dddb5822842f28d1fba67ccfae6de" }
|
2023-09-24 07:50:58 +00:00
|
|
|
# Please use the following script to update collab.
|
|
|
|
# Working directory: frontend
|
|
|
|
#
|
|
|
|
# To update the commit ID, run:
|
2023-10-02 09:22:22 +00:00
|
|
|
# scripts/tool/update_collab_rev.sh new_rev_id
|
2023-09-24 07:50:58 +00:00
|
|
|
#
|
|
|
|
# To switch to the local path, run:
|
|
|
|
# scripts/tool/update_collab_source.sh
|
2023-09-17 09:14:34 +00:00
|
|
|
# ⚠️⚠️⚠️️
|
2023-11-28 23:49:47 +00:00
|
|
|
collab = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-folder = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-document = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-database = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-plugins = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-user = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-entity = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
collab-persistence = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "22e11ebb490039736cb2a81d9fe7dfe96782bc8b" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|