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.
pretty_panics
Failed to verify create's content against its repository
Could not check any files
- warning: The crates.io package has no information about its path inside its repository.
- error: Repository doesn't exist: Can't checkout the repository. It's either gone or private: remote authentication required but no callback set; class=Http (34); code=Auth (-16).
- Make sure the
repository
URL inCargo.toml
is correct and works withgit clone
. The repository must be public.
- Make sure the
Checked on 2024-08-25
This check is experimental.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["rust-patterns"]
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 = ["error-message", "panic-message", "pretty", "customization", "debugging"]
(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 'anstyle' 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 'anstyle' may have been unintentional.
musty
Dependency async-graphql 5 is significantly outdated
Upgrade to 7.0.15 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.Imprecise dependency requirement anyhow = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
anyhow = "1.0.96"
. 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 mongodb 2 is outdated
Consider upgrading to 3.2.0 to get all the fixes and improvements.
Dependency thiserror 1 is a bit outdated
Consider upgrading to 2.0.11 to get all the fixes and improvements.
pretty_panics, pretty_panic_proc_macro, musty-proc-macro
No repository property
Specify git repository URL in
Cargo.toml
to help users find more information, contribute, and for lib.rs to read more info.
mcio
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"
).Nightly crates tend to have a short lifespan. We're delisting them if they're not updated frequently.
Dependency trust-dns-resolver ^0.9 is significantly outdated
Upgrade to 0.23.2 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.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["games"]
to theCargo.toml
.
pretty_panic_proc_macro
No readme property
Specify path to a
README
file for the project, so that information about is included in the crates.io tarball.
musty-proc-macro
Dependency darling 0.14.2 is significantly outdated
Upgrade to 0.20.10 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency syn 1 is significantly outdated
Upgrade to 2.0.98 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement syn = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
syn = "2.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.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.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.