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.
num-rational
Could not find the crate in the repository
Make sure the main branch of
https://github\.com/rust\-num/num\-rational
contains theCargo.toml
for the crate. If you have forked the crate, change the repository property inCargo.toml
to your fork's URL.
num-complex
Dependency bytecheck 0.6 is outdated
Consider upgrading to 0.8.1 to get all the fixes and improvements.
In Cargo, different 0.x versions are considered incompatible, so this is a semver-major upgrade.
Dependency rand 0.8 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency rkyv 0.7 is a bit outdated
Consider upgrading to 0.8.10 to get all the fixes and improvements.
Imprecise dependency requirement bytemuck = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
bytemuck = "1.22.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.
num-bigint
Dependency rand 0.8 is a bit outdated
Consider upgrading to 0.9.1 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.
num-traits, num-iter
Imprecise dependency requirement autocfg = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
autocfg = "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.
rustc-rayon
Published crate doesn't match its repository
Partially verified 125 files (includes 3 Cargo-generated).
Files in the crates.io crate compared to the repository:
Cargo.lock
not found.
Fetched
https://github.com/rust-lang/rustc-rayon.git
5bdcebb6d03fd9f6a85922ce873c72f7c0eb3450.Checked on 2025-02-02
This check is experimental.
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.
darc
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.
Missing keywords
Help users find your crates. Add
keywords = ["pointers", "darc", "concepts"]
(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.
streaming-iterator
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["algorithms"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["streaming-iterator", "convert", "streaming"]
(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.
rayon-cond, darc
License Apache-2.0/MIT is not in SPDX syntax
Use
OR
instead of/
.
probe
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["development-tools::debugging"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["probe"]
(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.
auto_cfg
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.docs.rs build failed
docs.rs site failed to build the crate, so users will have trouble finding the documentation. Docs.rs supports multiple platforms and custom configurations, so you can make the build work even if normal crate usage has special requirements.
Docs.rs doesn't need to run or even link any code, so system dependencies can simply be skipped. You can also set
cfg()
flags just for docs.rs and use them to hide problematic code.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 = ["auto", "cfg", "autocfg"]
(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.
primal-check, primal-sieve, primal-estimate
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.
primal-check, primal, primal-sieve, primal-estimate
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["mathematics"]
to theCargo.toml
.
alloc_geiger
License MIT/Apache-2.0 is not in SPDX syntax
Use
OR
instead of/
.
rayon-macro
Dependency syn 1 is significantly outdated
Upgrade to 2.0.101 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 syn = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
syn = "2.0.101"
. 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 proc-macro-crate 0.1 is outdated
Upgrade to 3.3.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
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"
).
primal-bit, libdw, elfutils, libelf-sys, primal-slowsieve, libdw-sys, libelf, libdwfl, libdwelf, auto_cfg, rayon-macro-hack, test_yank_rc_dep
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.
libssh-sys
License MIT/Apache-2.0 is not in SPDX syntax
Use
OR
instead of/
.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["cryptography"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["libssh-sys", "ssh", "libssh"]
(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.docs.rs build failed
docs.rs site failed to build the crate, so users will have trouble finding the documentation. Docs.rs supports multiple platforms and custom configurations, so you can make the build work even if normal crate usage has special requirements.
primal-bit
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["mathematics"]
to theCargo.toml
.
libdw
Missing keywords
Help users find your crates. Add
keywords = ["libdw", "elfutils", "org-elfutils"]
(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.
elfutils
Missing keywords
Help users find your crates. Add
keywords = ["elfutils", "org-elfutils"]
(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.
libelf
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["parser-implementations"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["elfutils", "libelf", "org-elfutils"]
(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.
libdwfl
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["parser-implementations"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["libdwfl", "elfutils", "org-elfutils"]
(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.
libelf-sys
Missing keywords
Help users find your crates. Add
keywords = ["elf", "elfutils", "libelf-sys", "org-elfutils"]
(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.
primal-slowsieve
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["mathematics"]
to theCargo.toml
.
libdw-sys
Missing keywords
Help users find your crates. Add
keywords = ["dw", "elfutils", "libdw-sys", "org-elfutils"]
(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.
libssh-sys, eh, rayon-macro-hack
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"
).
libdwelf
Missing keywords
Help users find your crates. Add
keywords = ["libdwelf", "elfutils", "org-elfutils"]
(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.
eh
License MIT/Apache-2.0 is not in SPDX syntax
Use
OR
instead of/
.
rayon-macro-hack
Dependency proc-macro-hack 0.5.9 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency syn 1 is significantly outdated
Upgrade to 2.0.101 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.101"
. 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.
test_yank_rc_dep
Crate is 'reserved'
Please be respectful of crates.io and don't squat crate names.
It's OK if you intend to publish this project in the near future. Keep in mind that even if you have good intentions, things may not go as planned. crates.io won't reclaim abandoned crates, so reserving good names may end up wasting the good names.
No issues found in: rustc-rayon-core ringmap ordermap indexmap either equivalent num autocfg rayon num-integer num-derive rayon-core rayon-futures rayon-hash num-macros
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.