mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
* chore(deps): update tauri monorepo to v2.6.0 * Regenerate api-iife.js * Bump rust tauri * Tweak all examples to match the new features * Bump workspace min tauri version * Bump `@tauri-apps/api` to ^2.6 * Add change file * Update lock file * missing `"` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
42 lines
894 B
TOML
42 lines
894 B
TOML
[workspace]
|
|
members = [
|
|
"plugins/*",
|
|
"plugins/*/tests/*",
|
|
"plugins/updater/tests/updater-migration/v2-app",
|
|
"plugins/*/examples/*/src-tauri",
|
|
"examples/*/src-tauri",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
tracing = "0.1"
|
|
log = "0.4"
|
|
tauri = { version = "2.6", default-features = false }
|
|
tauri-build = "2.3"
|
|
tauri-plugin = "2.3"
|
|
tauri-utils = "2.5"
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
url = "2"
|
|
schemars = "0.8"
|
|
dunce = "1"
|
|
specta = "^2.0.0-rc.16"
|
|
glob = "0.3"
|
|
zbus = "5"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
|
license = "Apache-2.0 OR MIT"
|
|
rust-version = "1.77.2"
|
|
repository = "https://github.com/tauri-apps/plugins-workspace"
|
|
|
|
# default to small, optimized release binaries
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
opt-level = "s"
|