mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
55c97b56a3
* refactor: user manager * refactor: user manager * refactor: session location * refactor: user manager * chore: gen ts files * feat: implement indexeddb persistence * chore: integrate user manager * chore: update * chore: run on web thread * chore: run on web thread * chore: fix test * chore: add test * chore: add test * chore: add user & sign in with password * chore: fix test * chore: update docs * chore: fix warnings * chore: gen files * chore: add user * chore: add files * chore: update config * chore: update scirpt * chore: update scirpt * fix: build * chore: update command * fix: ci * ci: fix * fix: compile * fix: compile * fix: ci * fix: compile * fix: tauri build * chore: fix test * chore: fix test
82 lines
3.0 KiB
TOML
82 lines
3.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"af-wasm",
|
|
"af-user",
|
|
"af-persistence",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
af-user = { path = "af-user" }
|
|
af-persistence = { path = "af-persistence" }
|
|
|
|
lib-dispatch = { path = "../../rust-lib/lib-dispatch" }
|
|
parking_lot = { version = "0.12.1" }
|
|
tracing = { version = "0.1.22" }
|
|
serde = { version = "1.0.194", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
collab-integrate = { path = "../../rust-lib/collab-integrate"}
|
|
flowy-notification = { path = "../../rust-lib/flowy-notification" }
|
|
flowy-user-pub = { path = "../../rust-lib/flowy-user-pub" }
|
|
flowy-server = { path = "../../rust-lib/flowy-server" }
|
|
flowy-server-pub = { path = "../../rust-lib/flowy-server-pub" }
|
|
flowy-error = { path = "../../rust-lib/flowy-error" }
|
|
flowy-derive = { path = "../../rust-lib/build-tool/flowy-derive" }
|
|
flowy-codegen = { path = "../../rust-lib/build-tool/flowy-codegen" }
|
|
flowy-document = { path = "../../rust-lib/flowy-document" }
|
|
lib-infra = { path = "../../rust-lib/lib-infra" }
|
|
collab = { version = "0.1.0" }
|
|
collab-entity = { version = "0.1.0" }
|
|
collab-user = { version = "0.1.0" }
|
|
bytes = { version = "1.5" }
|
|
protobuf = { version = "2.28.0" }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
futures-util = "0.3"
|
|
uuid = { version = "1.5", features = ["serde", "v4", "v5"] }
|
|
tokio-stream = "0.1"
|
|
tokio = { version = "1.35", features = ["sync"] }
|
|
wasm-bindgen-futures = "0.4.40"
|
|
serde-wasm-bindgen = "0.4"
|
|
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
lto = false
|
|
codegen-units = 16
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
codegen-units = 16
|
|
lto = false
|
|
|
|
[patch.crates-io]
|
|
# 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 = "69c69f6474eaa531fd822e9353cc5955b98e45eb" }
|
|
# 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 = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-folder = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-document = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-database = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-plugins = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-user = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|
|
collab-entity = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "e3620ae820e921955b9c3ca3ffee24aad544f972" }
|