mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
e8069af804
* update to tauri v2
* covector setup
* update locks
* bump packages to v2 through covector, remove rc references
* msrv 1.78
* downgrade 1.79 msrv dep
* test clipboard
* fmt
* bitstream-io 2.3.0
* Revert "test clipboard"
This reverts commit c3e19dbe59.
40 lines
891 B
TOML
40 lines
891 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"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.0.0", default-features = false }
|
|
tauri-build = "2.0.0"
|
|
tauri-plugin = "2.0.0"
|
|
tauri-utils = "2.0.0"
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
url = "2"
|
|
schemars = "0.8"
|
|
dunce = "1"
|
|
specta = "=2.0.0-rc.20"
|
|
#tauri-specta = "=2.0.0-rc.11"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
|
license = "Apache-2.0 OR MIT"
|
|
rust-version = "1.78"
|
|
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"
|