kbknapp / cargo-outdated

A cargo subcommand for displaying when Rust dependencies are out of date
MIT License
1.17k stars 87 forks source link

Notify about outdated git deps #374

Open vincentdephily opened 7 months ago

vincentdephily commented 7 months ago

When specifying a dependency using git and a version-like tag:

[dependencies]
regex = { git = "https://github.com/rust-lang/regex", tag = "1.3.8"}

I would like cargo-outdated to

AFAIU, this is essentially how dep updates work in Go, and it would sometimes be useful to have that workflow in Rust.