cargo-lockdiff

Crates.io

See what crates have changed after you run cargo update by comparing Cargo.lock to the vcs HEAD or file of your choice.

Supports git, mercurial, and plain files.

Example

Raw

``` $ cargo lockdiff --from "HEAD@{2 months ago}"

| Package | From | To | Compare | |------------------------------|---------|------------------------------|------------| | serdejson | 1.0.42 | 1.0.48 | ... | | sha2 | 0.8.0 | 0.8.1 | ... | | sharded-slab | NEW | 0.0.8 | | | signal-hook | 0.1.12 | REMOVED | | | smallvec | 1.0.0 | 1.2.0 | ... | | spin | 0.5.2 | REMOVED | | | string | 0.2.1 | REMOVED | | | strum | NEW | 0.18.0 | | | strummacros | NEW | 0.18.0 | | | syn | 1.0.11 | 1.0.17 | ... | | thiserror | NEW | 1.0.13 | | | thiserror-impl | NEW | 1.0.13 | | | thread_local | NEW | 1.0.1 | | | tokio | NEW | 0.2.13 | | | tokio-codec | 0.1.1 | 0.1.2 | ... | | tokio-signal | 0.2.7 | REMOVED | | | tracing | 0.1.10 | 0.1.13 | ... | | tracing-attributes | 0.1.5 | 0.1.7 | ... |

```

Rendered

| Package | From | To | Compare | |------------------------------|---------|------------------------------|------------| | serdejson | 1.0.42 | 1.0.48 | ... | | sha2 | 0.8.0 | 0.8.1 | ... | | sharded-slab | NEW | 0.0.8 | | | signal-hook | 0.1.12 | REMOVED | | | smallvec | 1.0.0 | 1.2.0 | ... | | spin | 0.5.2 | REMOVED | | | string | 0.2.1 | REMOVED | | | strum | NEW | 0.18.0 | | | strummacros | NEW | 0.18.0 | | | syn | 1.0.11 | 1.0.17 | ... | | thiserror | NEW | 1.0.13 | | | thiserror-impl | NEW | 1.0.13 | | | thread_local | NEW | 1.0.1 | | | tokio | NEW | 0.2.13 | | | tokio-codec | 0.1.1 | 0.1.2 | ... | | tokio-signal | 0.2.7 | REMOVED | | | tracing | 0.1.10 | 0.1.13 | ... | | tracing-attributes | 0.1.5 | 0.1.7 | ... |

Install

```bash cargo install cargo-lockdiff

try it

cargo lockdiff --help ```

Dependencies

To use git or hg the respective binary must be found in PATH. cargo metadata is needed for links.

Usage

```bash cargo update

don't commit yet!

cargo lockdiff ```

Or from vim, to insert the output into the commit message, type :r!cargo lockdiff.

To see what changed long ago (in git),

bash cargo lockdiff --from "HEAD@{2 months ago}"

Options

Environment variables prefixed with CARGO_LOCKDIFF_, such as CARGO_LOCKDIFF_NO_LINKS=true, may also be used. Set these in your ~/.profile (specific to your shell, of course) as defaults.

Compare Urls

Compare urls are best effort. Unfortunately there is no strict mapping between crate version numbers and VCS tags so the URLs are just guesses. There doesn't seem to be much consistency. Many maintainers seem to prefix their version number tags with a "v" or, for larger projects, the names of individual crates. If anyone has ideas on how to solve improve it I'd love to try some out.

Currently only Github is supported. Others will be added.

Todo