mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
7fb419c326
Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.studio> Co-authored-by: Lucas Nogueira <lucas@tauri.app>
42 lines
925 B
TOML
42 lines
925 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/tauri-config-schema",
|
|
|
|
# integration tests
|
|
"core/tests/restart",
|
|
]
|
|
|
|
exclude = [
|
|
# examples that can be compiled with the tauri CLI
|
|
"examples/api/src-tauri",
|
|
"examples/resources/src-tauri",
|
|
"examples/web/core",
|
|
"examples/file-associations/src-tauri",
|
|
"examples/workspace",
|
|
]
|
|
|
|
[workspace.package]
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
homepage = "https://tauri.app/"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
categories = [ "gui", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
# default to small, optimized workspace release binaries
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
opt-level = "s"
|