Path to this page:
Subject: CVS commit: pkgsrc/devel/cargo-outdated
From: pin
Date: 2023-10-07 23:21:26
Message id: 20231007212126.71D8FFADC@cvs.NetBSD.org
Log Message:
devel/cargo-outdated: import package
A cargo subcommand for displaying when Rust dependencies are out of date.
cargo-outdated is for displaying when dependencies have newer versions
available.
The functionality of cargo-outdated largely depends on the cargo builtin
command cargo update.
To retrieve the list of available SemVer compatible dependencies,
cargo-outdated firstly creates a temporary workspace, then executes cargo
update against it, finally compares the temporary dependency tree with the
original one.
Similarly, to check the latest dependencies, cargo-outdated replaces the SemVer
requirements of direct dependencies with wildcards then goes through the same
process.
Files: