-
Notifications
You must be signed in to change notification settings - Fork 141
Test/update-deps #938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AMDphreak
wants to merge
11
commits into
tauri-apps:dev
Choose a base branch
from
AMDphreak:test/update-deps
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Test/update-deps #938
Conversation
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
…ri` and `tauri-plugin-opener`
… `builds` folder. rerouted builds to `builds` folder so new contributors don't commit their builds when testing this app.
…eScript configurations across multiple templates
…eScript configurations across multiple templates
…and nice code formatting.
This commit updates Cargo.lock with the latest resolved dependency versions following changes to direct and transitive dependencies in the dependency tree. Updated Dependencies: - aho-corasick: updated to 1.1.4 * Used by regex and regex-automata for efficient string matching - anyhow: updated to 1.0.100 * Direct dependency for error handling - bitflags: updated to 2.10.0 * Used by multiple crates including napi, dispatch2, and libredox - thiserror: updated to 1.0.69 (used by dialoguer) * Also includes version 2.0.17 (used by redox_users) * Both versions coexist in the dependency tree - windows-sys: updated to 0.61.2 (primary version) * Also includes version 0.59.0 (used by console) * Multiple versions required for compatibility across the dependency tree New Dependencies (Transitive): - block2: 0.6.2 * Added as a transitive dependency via dispatch2 * Provides Objective-C block support for macOS/iOS interop - dispatch2: 0.3.0 * Added as a transitive dependency via ctrlc 3.5.1 * Provides cross-platform dispatch queue functionality * Replaces the older dispatch crate with improved API - objc2: 0.6.3 * Added as a transitive dependency via block2 and dispatch2 * Provides safe Objective-C runtime bindings for macOS/iOS These changes primarily stem from the update to ctrlc 3.5.1, which now uses dispatch2 for cross-platform signal handling, particularly improving macOS support. The addition of Objective-C-related crates (block2, objc2) enables better native macOS integration while maintaining cross-platform compatibility. All dependency checksums have been verified and the lock file is in a consistent state ready for builds across all supported platforms (Windows, macOS, Linux).
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
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.
Resolves:
2for cratetauri" - fresh install compile errors #935 (comment)This commit updates Cargo.lock with the latest resolved dependency versions
following changes to direct and transitive dependencies in the dependency tree.
Updated Dependencies:
New Dependencies (Transitive):
These changes primarily stem from the update to ctrlc 3.5.1, which now uses
dispatch2 for cross-platform signal handling, particularly improving macOS
support. The addition of Objective-C-related crates (block2, objc2) enables
better native macOS integration while maintaining cross-platform compatibility.
All dependency checksums have been verified and the lock file is in a consistent
state ready for builds across all supported platforms (Windows, macOS, Linux).