Issues found
Based on crates you own that have been published to crates.io. The best way to monitor these issues is to subscribe to the atom feed in your RSS reader.
procfs
Dependency rustix 0.38.19 is outdated
Upgrade to 1.0.7 to get all the fixes, and avoid causing duplicate dependencies in projects.
Easy way to bump dependencies:
cargo install cargo-edit; cargo upgrade -i
; Also check out Dependabot service on GitHub.Needs to specify correct MSRV
We estimate that this crate requires at least Rust 1.70, but specified Rust 1.48 as the minimum version. Add
rust-version = "1.70"
to theCargo.toml
.Optional dependency 'serde' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Feature 'serde' may have been unintentional.Using outdated edition for no reason
We estimate that this crate requires at least Rust 1.70, which is newer than the last 2018-edition compiler. You can upgrade without breaking any compatibility. Run
cargo fix --edition
and updateedition="…"
inCargo.toml
.Using the latest edition helps avoid old quirks of the compiler, and ensures Rust code has consistent syntax and behavior across all projects.
procdump
Dependency tui 0.13 has issues
It has been losing active users, which may be a sign it's deprecated or obsolete. Consider replacing it with a different crate.
Dependency procfs 0.9 is significantly outdated
Consider upgrading to 0.17.0 to get all the fixes and improvements.
In Cargo, different 0.x versions are considered incompatible, so this is a semver-major upgrade.
Dependency terminal_size 0.1.8 is significantly outdated
Consider upgrading to 0.4.2 to get all the fixes and improvements.
Imprecise dependency requirement anyhow = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
anyhow = "1.0.98"
. IfCargo.lock
ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using theminimal-versions
flag, used by users of old Rust versions.This crate does not bump semver-minor when adding new features, so to be safe you get all the features/APIs/fixes that your crate depends on, require a more specific patch version.
Dependency indexmap 1 is outdated
Consider upgrading to 2.9.0 to get all the fixes and improvements.
Dependency termion 1.5 is outdated
Consider upgrading to 4.0.5 to get all the fixes and improvements.
Latest stable release is old
It's been over 4 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).If the crate is truly stable, why not make a 1.0.0 release?
Missing keywords
Help users find your crates. Add
keywords = ["process", "process-pid", "pid", "feedback"]
(up to 5) to theCargo.toml
. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.
nws-forecast-zones, setenv, procdump, wmo-abbrev-headings, nws-product-list, lifx-core
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]
to theCargo.toml
.Even if there are no categories that fit precisely, pick one that is least bad. You can also propose new categories in crates.io issue tracker.
xmltree
Imprecise dependency requirement indexmap = 2
Cargo does not always pick latest versions of dependencies! Specify the version as
indexmap = "2.9.0"
. IfCargo.lock
ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using theminimal-versions
flag, used by users of old Rust versions.If you want to keep using truly minimal dependency requirements, please make sure you test them in CI with
-Z minimal-versions
Cargo option, because it's very easy to accidentally use a feature added in a later version.
terminal_size
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["command-line-interface"]
to theCargo.toml
.
udt
Incorrect dependency requirement libudt4-sys = 0.2
We could not parse it. Please check the semver syntax.
Cargo used to be more forgiving about the semver syntax, so it's possible that an already-published crate doesn't satisfy the current rules.
Dependency bitflags 0.7 is significantly outdated
Upgrade to 2.9.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency log 0.3 is significantly outdated
Upgrade to 0.4.27 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency winapi 0.2 has issues
It may not be actively developed any more. Consider changing the dependency.
Latest stable release is old
It's been over 8 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["network-programming"]
to theCargo.toml
.
xz-decom
Incorrect dependency requirement xz-embedded-sys = 0.1.1
We could not parse it. Please check the semver syntax.
Latest stable release is old
It's been over 9 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["compression", "embedded"]
to theCargo.toml
.
setenv
Latest stable release is old
It's been over 6 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).
setenv, xz-decom, udt, libudt4-sys, xz-embedded-sys
The Cargo package has no git commit information
Before publishing a package, make sure all packaged files are committed to the repository, and there are no "dirty" files. Push this commit to crate's public repository.
To protect against supply chain attacks similar to CVE-2024-3094, lib.rs will soon start flagging non-reproducible packages without public source code as suspicious. Currently only git repositories are supported (but may be hosted anywhere, not just GitHub). If you'd like a different SCM supported, please file a feature request.
xz-embedded-sys
Latest stable release is old
It's been over 9 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).Dependency gcc 0.3 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency libc 0.1 is significantly outdated
Upgrade to 0.2.172 to get all the fixes, and avoid causing duplicate dependencies in projects.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["compression"]
to theCargo.toml
.
procfs-core
Imprecise dependency requirement bitflags = 2
Cargo does not always pick latest versions of dependencies! Specify the version as
bitflags = "2.9.0"
. IfCargo.lock
ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using theminimal-versions
flag, used by users of old Rust versions.Optional dependency 'serde' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Feature 'serde' may have been unintentional.
libudt4-sys
Dependency gcc 0.3 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency winapi 0.2 has issues
It may not be actively developed any more. Consider changing the dependency.
Latest stable release is old
It's been over 8 years. Is this crate still maintained? Make a new release, either to refresh it, or to set
[badges.maintenance] status = "deprecated"
(or
"as-is"
,"passively-maintained"
).Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["network-programming"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["udt", "libudt4-sys", "udt4wrap", "net", "udt-rs"]
(up to 5) to theCargo.toml
. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.
lifx-core
Dependency thiserror 1.0 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Imprecise dependency requirement arbitrary = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
arbitrary = "1.4.0"
. IfCargo.lock
ends up having an unexpectedly old version of the dependency, you might get a dependency that lacks features/APIs or important bugfixes that you depend on. This is most likely to happen when using theminimal-versions
flag, used by users of old Rust versions.Missing keywords
Help users find your crates. Add
keywords = ["lifx", "reserved", "switch", "beam", "devices"]
(up to 5) to theCargo.toml
. Best keywords are alternative terms or their spellings that aren't in the name or description. Also add a keyword that precisely categorizes this crate and groups it with other similar crates.Using outdated edition for no reason
We estimate that this crate requires at least Rust 1.58, which is newer than the last 2018-edition compiler. You can upgrade without breaking any compatibility. Run
cargo fix --edition
and updateedition="…"
inCargo.toml
.
xz-decom, libudt4-sys, xz-embedded-sys
README missing from crate tarball
Cargo sometimes fails to package the
README
file. Ensure the path to theREADME
inCargo.toml
is valid, and points to a file inside the crate's directory.
No issues found in: lifx
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.