mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
5b07656295
* chore: rename flowy-database to flowy-sqlite * refactor: rename flowy-grid to flowy-database * refactor: rename grid to database * refactor: rename GridEvent to DatabaseEvent * refactor: rename grid_id to database_id * refactor: rename dart code
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[workspace]
|
||
members = [
|
||
"lib-dispatch",
|
||
"lib-log",
|
||
"flowy-net",
|
||
"flowy-core",
|
||
"dart-ffi",
|
||
"flowy-user",
|
||
"flowy-test",
|
||
"flowy-sqlite",
|
||
"flowy-folder",
|
||
"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 |