fix tauri-plugin-dialog version constraint to match other plugins#8542
Open
fix tauri-plugin-dialog version constraint to match other plugins#8542
Conversation
Signed-off-by: morgmart <98432065+morgmart@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Category: fix
User Impact: Resolves a build warning about mismatched Tauri package versions that could block
just devfrom starting.Problem: The
tauri-plugin-dialogRust crate was pinned to">=2,<2.7"while the NPM package@tauri-apps/plugin-dialogresolved to 2.7.0, causing a version mismatch error on every dev build.Solution: Relax the Cargo constraint to
"2"to match every other Tauri plugin in the project. This lets Cargo resolve to the same minor version as the NPM package.File changes
ui/goose2/src-tauri/Cargo.toml
Changed
tauri-plugin-dialogversion from">=2,<2.7"to"2"to align with the pattern used by all other Tauri plugins (tauri-plugin-opener,tauri-plugin-window-state,tauri-plugin-log).Reproduction Steps
just devfromui/goose2/