Skip to content

fix(deps): pin all floating dependencies to exact versions from Cargo.lock#2052

Open
rosschurchill wants to merge 1 commit into
rtk-ai:developfrom
rosschurchill:fix/deps-exact-pin
Open

fix(deps): pin all floating dependencies to exact versions from Cargo.lock#2052
rosschurchill wants to merge 1 commit into
rtk-ai:developfrom
rosschurchill:fix/deps-exact-pin

Conversation

@rosschurchill
Copy link
Copy Markdown

ureq and several other dependencies were specified as single-digit or range versions (e.g. ureq = "2"), meaning any compatible release is silently adopted on the next cargo update. This is a supply chain risk window.

Pinned every dependency to its exact resolved version using Cargo's =x.y.z syntax, matching what's already in Cargo.lock. No version changes — purely converting ranges to exact pins.

Free to use as-is.

…o.lock

Pinned all [dependencies] entries using Cargo exact-version syntax (=x.y.z).
Versions taken from the existing Cargo.lock to avoid any change in resolved
dependencies. Violates CLAUDE.md supply-chain rule: no floating ranges allowed.

Before: ureq = "2", clap = { version = "4", ... }, walkdir = "2", etc.
After:  ureq = "=2.12.1", clap = { version = "=4.5.60", ... }, etc.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@CLAassistant
Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants