mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
69a7ae5201
* fix: border of field cell * chore: add filter button * chore: refactor setting button event * chore: notify row did changed with filter configuration * chore: add filter bloc test * chore: config add filter button * chore: create filter * chore: load filters and update corresponding field property * chore: add filter choice chip * chore: config choice chip ui * chore: send notification when filter updated * chore: update filter after update field type option data * fix: remove/add filter when update field's type option * chore: create home setting bloc to save the setting of the home screen * chore: add filter test * chore: edit text filter ui * fix: filter cell bugs * fix: insert row out of bound * chore: update setting icon in grid * chore: shrink wrap the filter list * refactor: extract row container from row cache * chore: disable split-debuginfo Co-authored-by: nathan <nathan@appflowy.io>
33 lines
927 B
TOML
33 lines
927 B
TOML
[workspace]
|
||
members = [
|
||
"lib-dispatch",
|
||
"lib-log",
|
||
"lib-sqlite",
|
||
"flowy-net",
|
||
"flowy-sdk",
|
||
"dart-ffi",
|
||
"flowy-user",
|
||
"flowy-test",
|
||
"flowy-database",
|
||
"flowy-folder",
|
||
"dart-notify",
|
||
"flowy-document",
|
||
"flowy-error",
|
||
"flowy-revision",
|
||
"flowy-grid",
|
||
"flowy-task",
|
||
]
|
||
|
||
[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 |