chore(deps): batch-bump 8 deps + migrate core-foundation 0.10 / security-framework 3.x - #78
Merged
Merged
Conversation
β¦ity-framework 3.x Consolidates 8 Dependabot bumps that mutually conflict on Cargo.lock if merged separately (supersedes #69β#76): - indicatif 0.17β0.18.6, thiserror 1.0β2.0.19, dirs 5β6.0, colored 2β3.1.1, shlex 1.3β2.0.1, crossterm 0.28β0.29, core-foundation 0.9β0.10.1, security-framework 2.11β3.7.0. core-foundation 0.10 reorganized TCFType, so the macOS keychain-ACL FFI now uses `as_concrete_TypeRef().cast()` (typed SecKeychainItemRef β *mut c_void) instead of the removed `as_CFTypeRef().cast_mut()` path. Aligns the direct security-framework dep with keyring 3.x (single tree, no duplicate). Verified: build, clippy --all-features -D warnings, cargo test --workspace, and cargo fmt --check all clean.
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.
Summary
Consolidates 8 Dependabot bumps that mutually conflict on
Cargo.lockif merged separately, and migrates the one real breaking change. Supersedes #69, #70, #71, #72, #73, #74, #75, #76.Bumps: indicatif 0.17β0.18.6 Β· thiserror 1.0β2.0.19 Β· dirs 5β6.0 Β· colored 2β3.1.1 Β· shlex 1.3β2.0.1 Β· crossterm 0.28β0.29 Β· core-foundation 0.9β0.10.1 Β· security-framework 2.11β3.7.0.
Breaking-change migration
core-foundation 0.10 reorganized
TCFType, removing theas_CFTypeRef().cast_mut()path used by the macOS keychain-ACL FFI. Now uses the typedas_concrete_TypeRef().cast()(SecKeychainItemRefβ*mut c_void). This also aligns the directsecurity-frameworkdep with keyring 3.x (single dependency tree, no duplicate). The other seven bumps needed no code changes.Division of labor
Implemented by Cursor (the coding worker, via agent-hub); Claude validated β caught and fixed one
E0308type-mismatch (--all-features-gated FFI path) that Cursor's build (default features) hadn't surfaced.Verification
cargo build --workspaceβcargo clippy --workspace --all-targets --all-features -- -D warningsβcargo test --workspaceβ (no failures)cargo fmt --all -- --checkβ