mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-05 22:48:27 +00:00
* feat: try using folder2 * feat: update * feat: implement handlers * fix: compile errors * chore: add unsafe send + sync * feat: remove unsafe impl * fix: replace folder with foler2 * chore: dart compile errors * test: fix test * test: fix test * test: bypass existing tests * feat: open latest view * chore: fix dart warnings * chore: config notification * fix: folder notification bugs * fix: doesn't open the new view after creating * chore: rename struct * refactor: user id * test: fix test * chore: remove unused user_id * fix: fix read workspace views * chore: rename appflowy data folder * chore: update ref * fix: tauri build
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[workspace]
|
||
members = [
|
||
"lib-dispatch",
|
||
"lib-log",
|
||
"flowy-net",
|
||
"flowy-core",
|
||
"dart-ffi",
|
||
"flowy-user",
|
||
"flowy-test",
|
||
"flowy-sqlite",
|
||
# "flowy-folder",
|
||
"flowy-folder2",
|
||
"flowy-notification",
|
||
"flowy-document",
|
||
"flowy-error",
|
||
"flowy-revision",
|
||
"flowy-revision-persistence",
|
||
"flowy-database",
|
||
"flowy-task",
|
||
"flowy-client-sync",
|
||
"flowy-derive",
|
||
"flowy-ast",
|
||
"flowy-codegen",
|
||
]
|
||
|
||
[profile.dev]
|
||
opt-level = 0
|
||
#https://doc.rust-lang.org/rustc/codegen-options/index.html#debug-assertions
|
||
#split-debuginfo = "unpacked"
|
||
|
||
[profile.release]
|
||
opt-level = 3
|
||
## debuginfo — it makes ./target much bigger, which again harms caching. Depending on your preferred workflow,
|
||
## you might consider disabling debuginfo unconditionally, this brings some benefits for local builds as well.
|
||
#strip = "debuginfo"
|
||
## For from-scratch builds, incremental adds an extra dependency-tracking overhead. It also significantly increases
|
||
## the amount of IO and the size of ./target, which make caching less effective.
|
||
incremental = false
|
||
|
||
|
||
[patch.crates-io]
|
||
collab = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "f25ce7f" }
|
||
collab-folder = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "f25ce7f" }
|
||
collab-persistence = { git = "https://github.com/AppFlowy-IO/AppFlowy-Collab", rev = "f25ce7f" }
|