2021-06-24 16:32:36 +08:00
|
|
|
|
[workspace]
|
|
|
|
|
members = [
|
2021-11-19 14:38:11 +08:00
|
|
|
|
"lib-dispatch",
|
2021-11-20 10:52:39 +08:00
|
|
|
|
"lib-log",
|
2021-12-20 14:26:26 +08:00
|
|
|
|
"lib-sqlite",
|
2021-12-12 21:48:52 +08:00
|
|
|
|
"flowy-net",
|
2021-06-28 22:56:15 +08:00
|
|
|
|
"flowy-sdk",
|
|
|
|
|
"dart-ffi",
|
2021-06-29 16:52:29 +08:00
|
|
|
|
"flowy-user",
|
2021-07-06 14:14:47 +08:00
|
|
|
|
"flowy-test",
|
2021-07-10 16:27:20 +08:00
|
|
|
|
"flowy-database",
|
2022-01-27 20:39:54 +08:00
|
|
|
|
"flowy-folder",
|
2021-11-19 14:38:11 +08:00
|
|
|
|
"dart-notify",
|
2022-03-19 16:52:28 +08:00
|
|
|
|
"flowy-text-block",
|
2021-12-14 15:31:44 +08:00
|
|
|
|
"flowy-error",
|
2022-03-19 16:52:28 +08:00
|
|
|
|
"flowy-revision",
|
2022-03-02 15:10:53 +08:00
|
|
|
|
"flowy-grid",
|
2021-06-24 16:32:36 +08:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[profile.dev]
|
2022-03-19 16:23:34 +08:00
|
|
|
|
opt-level = 0
|
|
|
|
|
#https://doc.rust-lang.org/rustc/codegen-options/index.html#debug-assertions
|
2021-06-24 16:32:36 +08:00
|
|
|
|
split-debuginfo = "unpacked"
|
2022-03-19 16:23:34 +08:00
|
|
|
|
|
|
|
|
|
[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
|