mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
620e027c3e
* feat: start on AI plan+billing UI * chore: enable plan and billing * feat: cache workspace subscription + minor fixes (#5705) * feat: update api from billing * feat: add api for workspace subscription info (#5717) * feat: refactor and start integrating AI plans * feat: refine UI and add business logic for AI * feat: complete UIUX for AI and limits * chore: remove resolved todo * chore: localize remove addon dialog * chore: fix spacing issue for usage * fix: interpret subscription + usage on action * chore: update api for billing (#5735) * chore: update revisions * fix: remove subscription cache * fix: copy improvements + use consistent dialog * chore: update to the latest client api * feat: support updating billing period * Feat/ai billing cancel reason (#5752) * chore: add cancellation reason field * fix: ci add one retry for concurrent sign up * chore: merge with main * chore: half merge * chore: fix conflict * chore: observer error * chore: remove unneeded protobuf and remove unwrap * feat: added subscription plan details * chore: check error code and update sidebar toast * chore: periodically check billing state * chore: editor ai error * chore: return file upload error * chore: fmt * chore: clippy * chore: disable upload image when exceed storage limitation * chore: remove todo * chore: remove openai i18n * chore: update log * chore: update client-api to fix stream error * chore: clippy * chore: fix language file * chore: disable billing UI --------- Co-authored-by: Zack Fu Zi Xiang <speed2exe@live.com.sg> Co-authored-by: nathan <nathan@appflowy.io>
133 lines
4.7 KiB
TOML
133 lines
4.7 KiB
TOML
[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.5", features = [] }
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0"
|
|
tracing = "0.1.40"
|
|
bytes = "1.5.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0.108"
|
|
protobuf = { version = "2.28.0" }
|
|
diesel = { version = "2.1.0", features = ["sqlite", "chrono", "r2d2", "serde_json"] }
|
|
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"] }
|
|
zip = "2.1.3"
|
|
yrs = "0.19.1"
|
|
# Please use the following script to update collab.
|
|
# Working directory: frontend
|
|
#
|
|
# To update the commit ID, run:
|
|
# scripts/tool/update_collab_rev.sh new_rev_id
|
|
#
|
|
# To switch to the local path, run:
|
|
# scripts/tool/update_collab_source.sh
|
|
# ⚠️⚠️⚠️️
|
|
collab = { version = "0.2" }
|
|
collab-entity = { version = "0.2" }
|
|
collab-folder = { version = "0.2" }
|
|
collab-document = { version = "0.2" }
|
|
collab-database = { version = "0.2" }
|
|
collab-plugins = { version = "0.2" }
|
|
collab-user = { version = "0.2" }
|
|
|
|
# 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
|
|
# ⚠️⚠️⚠️️
|
|
client-api = { git = "https://github.com/AppFlowy-IO/AppFlowy-Cloud", rev = "c2a839ba8bf9ead44679eb08f3a9680467b767ca" }
|
|
|
|
[dependencies]
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
tauri = { version = "1.5", features = [
|
|
"dialog-all",
|
|
"clipboard-all",
|
|
"fs-all",
|
|
"shell-open",
|
|
] }
|
|
tauri-utils = "1.5.2"
|
|
bytes.workspace = true
|
|
tracing.workspace = true
|
|
lib-dispatch = { path = "../../rust-lib/lib-dispatch", features = [
|
|
"use_serde",
|
|
] }
|
|
flowy-core = { path = "../../rust-lib/flowy-core", features = [
|
|
"ts",
|
|
] }
|
|
flowy-user = { path = "../../rust-lib/flowy-user", features = ["tauri_ts"] }
|
|
flowy-config = { path = "../../rust-lib/flowy-config", features = ["tauri_ts"] }
|
|
flowy-date = { path = "../../rust-lib/flowy-date", features = ["tauri_ts"] }
|
|
flowy-chat = { path = "../../rust-lib/flowy-chat", features = ["tauri_ts"] }
|
|
flowy-error = { path = "../../rust-lib/flowy-error", features = [
|
|
"impl_from_sqlite",
|
|
"impl_from_dispatch_error",
|
|
"impl_from_appflowy_cloud",
|
|
"impl_from_reqwest",
|
|
"impl_from_serde",
|
|
"tauri_ts",
|
|
] }
|
|
flowy-search = { path = "../../rust-lib/flowy-search", features = ["tauri_ts"] }
|
|
flowy-document = { path = "../../rust-lib/flowy-document", features = [
|
|
"tauri_ts",
|
|
] }
|
|
flowy-notification = { path = "../../rust-lib/flowy-notification", features = [
|
|
"tauri_ts",
|
|
] }
|
|
|
|
uuid = "1.5.0"
|
|
tauri-plugin-deep-link = "0.1.2"
|
|
dotenv = "0.15.0"
|
|
semver = "1.0.23"
|
|
|
|
[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"]
|
|
|
|
[patch.crates-io]
|
|
# Please use the following script to update collab.
|
|
# Working directory: frontend
|
|
#
|
|
# To update the commit ID, run:
|
|
# scripts/tool/update_collab_rev.sh new_rev_id
|
|
#
|
|
# To switch to the local path, run:
|
|
# scripts/tool/update_collab_source.sh
|
|
# ⚠️⚠️⚠️️
|
|
collab = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-entity = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-folder = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-document = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-database = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-plugins = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
collab-user = { version = "0.2", git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "20f7814" }
|
|
|
|
# Working directory: frontend
|
|
# To update the commit ID, run:
|
|
# scripts/tool/update_local_ai_rev.sh new_rev_id
|
|
# ⚠️⚠️⚠️️
|
|
appflowy-local-ai = { version = "0.1", git = "https://github.com/AppFlowy-IO/AppFlowy-LocalAI", rev = "c4ab1db44e96348f9b0770dd8ecc990f68ac415d" }
|
|
appflowy-plugin = { version = "0.1", git = "https://github.com/AppFlowy-IO/AppFlowy-LocalAI", rev = "c4ab1db44e96348f9b0770dd8ecc990f68ac415d" }
|