mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-27 15:13:23 +03:00
34 lines
665 B
TOML
34 lines
665 B
TOML
[workspace]
|
|
members = [
|
|
# core
|
|
"core/tauri",
|
|
"core/tauri-runtime",
|
|
"core/tauri-runtime-wry",
|
|
"core/tauri-macros",
|
|
"core/tauri-utils",
|
|
"core/tauri-build",
|
|
"core/tauri-codegen",
|
|
"core/config-schema",
|
|
|
|
# integration tests
|
|
"core/tests/restart",
|
|
"core/tests/app-updater"
|
|
]
|
|
|
|
exclude = [
|
|
# examples that can be compiled with the tauri CLI
|
|
"examples/api/src-tauri",
|
|
"examples/updater/src-tauri",
|
|
"examples/resources/src-tauri",
|
|
"examples/sidecar/src-tauri",
|
|
"examples/web/core"
|
|
]
|
|
|
|
# default to small, optimized workspace release binaries
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
opt-level = "s"
|