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