2019-11-28 01:26:24 +03:00
|
|
|
[workspace]
|
2023-09-05 14:28:33 +03:00
|
|
|
resolver = "2"
|
2019-11-28 01:26:24 +03:00
|
|
|
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",
|
2022-03-23 23:14:52 +03:00
|
|
|
"core/tauri-codegen",
|
2023-04-07 18:11:05 +03:00
|
|
|
"core/tauri-config-schema",
|
2024-05-29 15:32:58 +03:00
|
|
|
"core/tauri-acl-schema",
|
2024-01-23 03:24:15 +03:00
|
|
|
"core/tauri-plugin",
|
2022-08-09 20:43:51 +03:00
|
|
|
|
2022-03-23 23:14:52 +03:00
|
|
|
# integration tests
|
2022-04-30 02:30:24 +03:00
|
|
|
"core/tests/restart",
|
2024-01-23 03:24:15 +03:00
|
|
|
"core/tests/acl",
|
2021-08-17 16:27:18 +03:00
|
|
|
]
|
2022-03-23 23:14:52 +03:00
|
|
|
|
2021-08-17 16:27:18 +03:00
|
|
|
exclude = [
|
|
|
|
# examples that can be compiled with the tauri CLI
|
2021-03-13 04:10:19 +03:00
|
|
|
"examples/api/src-tauri",
|
2022-01-09 17:11:59 +03:00
|
|
|
"examples/resources/src-tauri",
|
2022-12-14 19:39:05 +03:00
|
|
|
"examples/web/core",
|
2023-07-17 00:34:43 +03:00
|
|
|
"examples/file-associations/src-tauri",
|
2023-04-07 18:11:05 +03:00
|
|
|
"examples/workspace",
|
2024-01-23 03:24:15 +03:00
|
|
|
"examples/plugins/tauri-plugin-example",
|
2020-04-12 16:57:52 +03:00
|
|
|
]
|
2021-03-13 04:10:19 +03:00
|
|
|
|
2023-05-26 16:04:01 +03:00
|
|
|
[workspace.package]
|
2023-09-09 15:58:41 +03:00
|
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
2023-05-26 16:04:01 +03:00
|
|
|
homepage = "https://tauri.app/"
|
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
2023-09-09 15:58:41 +03:00
|
|
|
categories = ["gui", "web-programming"]
|
2023-05-26 16:04:01 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
edition = "2021"
|
2023-10-17 17:08:15 +03:00
|
|
|
rust-version = "1.70"
|
2023-05-26 16:04:01 +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"
|
2024-06-13 18:31:12 +03:00
|
|
|
|
|
|
|
# Temporary patch to schemars to preserve newlines in docstrings for our reference docs schemas
|
|
|
|
# See https://github.com/GREsau/schemars/issues/120 for reference
|
|
|
|
[patch.crates-io]
|
2024-07-31 09:40:45 +03:00
|
|
|
schemars_derive = { git = 'https://github.com/tauri-apps/schemars.git', branch = 'feat/preserve-description-newlines' }
|