Bug
The Staged install script (install.sh) and just app staged build fail with:
Error Found version mismatched Tauri packages. Make sure the NPM package and Rust crate versions are on the same major/minor releases:
tauri-plugin-dialog (v2.7.0) : @tauri-apps/plugin-dialog (v2.6.0)
Cause
In apps/staged/src-tauri/Cargo.toml, the Rust crate is specified as tauri-plugin-dialog = "2", which resolves to 2.7.0. But apps/staged/package.json pins the NPM package at "@tauri-apps/plugin-dialog": "^2.6.0", which resolves to 2.6.x. Tauri's build checks that the Rust and JS sides of each plugin share the same minor version, and rejects the mismatch.
Fix
Bump the NPM dependency to ^2.7.0 in apps/staged/package.json.
Environment
- MacBook Pro 16-inch (Nov 2024)
- Apple M4 Pro, 48 GB
- macOS Tahoe 26.3.1 (a)
- Built from
main branch as of 2026-06-17
Bug
The Staged install script (
install.sh) andjust app staged buildfail with:Cause
In
apps/staged/src-tauri/Cargo.toml, the Rust crate is specified astauri-plugin-dialog = "2", which resolves to 2.7.0. Butapps/staged/package.jsonpins the NPM package at"@tauri-apps/plugin-dialog": "^2.6.0", which resolves to 2.6.x. Tauri's build checks that the Rust and JS sides of each plugin share the same minor version, and rejects the mismatch.Fix
Bump the NPM dependency to
^2.7.0inapps/staged/package.json.Environment
mainbranch as of 2026-06-17