mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
10b80391fc
* fix(fs): scope checks on Android On Android, when we call canonicalize() on "/data/user/0/appid" (which is the data dir), the result is a "/data/data/appid" path, so we need to adjust our scope for that. * use scope from core * update persisted-scope * fix build * dev branch
32 lines
625 B
TOML
32 lines
625 B
TOML
[workspace]
|
|
members = [
|
|
"plugins/*",
|
|
"plugins/*/tests/*",
|
|
"plugins/*/examples/*/src-tauri",
|
|
"examples/*/src-tauri",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = "2.0.0-alpha.20"
|
|
tauri-build = "2.0.0-alpha.13"
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
url = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
|
license = "Apache-2.0 OR MIT"
|
|
rust-version = "1.70"
|
|
|
|
# default to small, optimized release binaries
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
opt-level = "s"
|