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.
anise
Imprecise dependency requirement serde = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
serde = "1.0.219"
. 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.
Locked dependency version tabled =0.19
This can easily cause a dependency resolution conflict. If you must work around a semver-breaking dependency that can't be yanked, use a range of versions or fork it.
Dependency numpy 0.23 is outdated
Upgrade to 0.24.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
In Cargo, different 0.x versions are considered incompatible, so this is a semver-major upgrade.
Dependency pyo3 0.23 is outdated
Upgrade to 0.24.2 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 = ["science::geo", "algorithms"]
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.
Missing keywords
Help users find your crates. Add
keywords = ["ephemeris", "anise", "rotation", "spice", "naif"]
(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.Optional dependency 'url' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Features 'url', 'numpy', 'regex', 'rust-embed', 'pyo3', 'pyo3-log', 'ndarray', 'serde_dhall', 'platform-dirs', 'ureq' may have been unintentional.
nyx-space
Dependency polars 0.46.0 is outdated
Upgrade to 0.47.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
graco
Dependency structopt 0.2 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 env_logger 0.6 is significantly outdated
Upgrade to 0.11.8 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency petgraph 0.4 is significantly outdated
Upgrade to 0.8.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.6 is significantly outdated
Upgrade to 0.9.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement threadpool = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
threadpool = "1.8.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.Latest stable release is old
It's been over 5 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?
hifitime
Dependency pyo3 0.23.3 is outdated
Upgrade to 0.24.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency tabled 0.17.0 is outdated
Upgrade to 0.19.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Optional dependency 'openssl' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Features 'openssl', 'reqwest', 'serde_derive', 'web-time', 'serde', 'tabled', 'pyo3' may have been unintentional.
hyperdual
Locked dependency version nalgebra =0.33
This can easily cause a dependency resolution conflict. If you must work around a semver-breaking dependency that can't be yanked, use a range of versions or fork it.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["mathematics"]
to theCargo.toml
.Using outdated edition for no reason
We estimate that this crate requires at least Rust 1.65, which is newer than the last 2015-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.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.