fix(deps): Update Cargo.lock to pull latest single-instance plugin fixes - #1198
Open
litchi-lcy wants to merge 1 commit into
Open
fix(deps): Update Cargo.lock to pull latest single-instance plugin fixes#1198litchi-lcy wants to merge 1 commit into
litchi-lcy wants to merge 1 commit into
Conversation
AK47are
added a commit
to AK47are/pot-desktop
that referenced
this pull request
Nov 3, 2025
AK47are
added a commit
to AK47are/pot-desktop
that referenced
this pull request
Nov 3, 2025
only update tauri-single-instance plugin and its dependencies issue see pot-app#1198
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.
Hello Pot Maintainers,
This Pull Request only updates the
src-tauri/Cargo.lockfile.The Problem Solved:
When running
pnpm tauri devon certain Windows configurations (e.g., Windows 11 Dev Channel), the application immediately panics during initialization with anull pointer dereference occurrederror, specifically originating from thetauri-plugin-single-instancecode.The Cause:
The
tauri-plugin-single-instancecode, as locked in the previousCargo.lockfile, contained a known bug in its Windows implementation.The Fix in this PR:
By running
cargo update, I forced Cargo to check thev1branch of the plugins-workspace, which contains the official fix for this panic.This PR updates the
Cargo.lockto reference the fixed Git commit hash. This ensures that developers will no longer encounter the fatal crash when setting up the project.Thank you!