mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-25 13:17:47 +02:00
69a1fa099c
* feat(fs): improved API * fmt * fix unix builds * again * clippy * clippy * fix import in docs examples * fmt, clippy * Update linux.rs * add API for watch * fix with `watcher` feature flag * use baseDir for all commands * do not export close function * fix build * organize and address review comments * fmt * generated files * rename FsFile to FileHandle, move APIs and docs * extend example * extend `Resource` * actually extend it --------- Co-authored-by: FabianLars <fabianlars@fabianlars.de> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
27 lines
616 B
TOML
27 lines
616 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"
|