Build tooling to review Cargo.lock bumps #20
Labels
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: public/keyfork#20
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Given two version of Cargo.lock (base commit, head commit), find out which new versions of packages are added, and run the following steps:
git difftool HEAD
Can use
cargo fetch
. Implemented viamake review
.Reopening because I'm not happy with this. I want a tool that can be used to audit things before or while
cargo update
is being run, something that allows more interactivity. The ideal workflow would be:make review
for each crate to be affected by this change.make review
can still be used by anyone who wishes to review all previously upgraded crates at once, but tooling must exist to streamline the process of choosing what upgrades to include.