2019-11-28 01:26:24 +03:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2021-03-13 04:10:19 +03:00
|
|
|
# core
|
2021-04-08 19:22:20 +03:00
|
|
|
"core/tauri",
|
2021-05-09 21:19:37 +03:00
|
|
|
"core/tauri-runtime",
|
2021-05-10 00:43:50 +03:00
|
|
|
"core/tauri-runtime-wry",
|
2021-04-08 19:22:20 +03:00
|
|
|
"core/tauri-macros",
|
|
|
|
"core/tauri-utils",
|
2021-03-13 04:10:19 +03:00
|
|
|
"core/tauri-build",
|
2021-08-17 16:27:18 +03:00
|
|
|
"core/tauri-codegen"
|
|
|
|
]
|
|
|
|
exclude = [
|
|
|
|
# examples that can be compiled with the tauri CLI
|
2021-03-13 04:10:19 +03:00
|
|
|
"examples/api/src-tauri",
|
2021-08-17 16:27:18 +03:00
|
|
|
"examples/updater/src-tauri"
|
2020-04-12 16:57:52 +03:00
|
|
|
]
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
# default to small, optimized workspace release binaries
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
incremental = false
|
|
|
|
opt-level = "s"
|