killercup / cargo-edit

A utility for managing cargo dependencies from the command line.
http://killercup.github.io/cargo-edit/
MIT License
3.04k stars 146 forks source link

upgrade: Show technical debt #899

Open reneleonhardt opened 1 month ago

reneleonhardt commented 1 month ago

Feature Request

Show technical debt numbers in cargo upgrade similar to like badges do to encourage increasing maintainability, minimizing vulnerabilities, improving code and using new features. The simplest number would be to sum up days between the installed version and the last stable release for all found upgrades (12 days between the old and new version of the first upgrade, 34 days between the old and new version of the second upgrade, ...). If you count compatible and incompatible updates separately you can show the reduced technical debt after a successful upgrade and the remaining technical debt for incompatible upgrades.

Example:

$ cargo upgrade --verbose
    Checking rewrk's dependencies
name  old req compatible latest new req note         debt
====  ======= ========== ====== ======= ====         ====
clap  2       2.34.0     4.5.9  2       incompatible 12 days
http  0.2     0.2.12     1.1.0  0.2     incompatible 34 days
hyper 0.14    0.14.30    1.4.1  0.14    incompatible 56 days
    Technical debt: 102 days
    Checking rewrk-core's dependencies
name  old req compatible latest new req note        
====  ======= ========== ====== ======= ====        
http  0.2     0.2.12     1.1.0  0.2     incompatible 78 days
flume 0.10.14 0.10.14    0.11.0 0.10.14 incompatible 90 days
hyper 0.14    0.14.30    1.4.1  0.14    incompatible 12 days
axum  0.6.20  0.6.20     0.7.5  0.6.20  incompatible 34 days
    Technical debt: 214 days

Please note that crates.io already shows the age of a crate as the very first information below Metadata:

cargo crate Metadata age

Other package managers like npm and bundler already offer an outdated command, this could be used internally by cargo upgrade and offered as a public command as well.

epage commented 1 month ago

FYI development focus has shifted to integrating this command into cargo.

reneleonhardt commented 1 month ago

Thx for letting me know. Do all feature cargo-edit requests now have to be addressed against cargo, or do we have to wait until the integration is finished, is there a milestone tracking progress?

epage commented 1 month ago

https://github.com/rust-lang/cargo/issues/12425 is the issue for the current effort. Note that it isn't a drop-in replacement so requests like this won't make as much sense and might be better for https://github.com/rust-lang/cargo/issues/4309