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.
libpd-rs
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.
field33_rdftk_iri_temporary_fork
Dependency error-chain 0.12.2 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency uuid =0.8.1 is significantly outdated
Upgrade to 1.15.0 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.Locked dependency version uuid =0.8.1
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 = ["web-programming"]
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 = ["iri", "uri", "specification", "parser", "fork"]
(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.
libpd-rs, rytm-rs
Imprecise dependency requirement thiserror = 2
Cargo does not always pick latest versions of dependencies! Specify the version as
thiserror = "2.0.12"
. 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.
smrec
Dependency midir 0.9 is outdated
Consider upgrading to 0.10.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 nom 7 is a bit outdated
Consider upgrading to 8.0.0 to get all the fixes and improvements.
Dependency thiserror 1.0 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Failed to verify create's content against its repository
Verified 16 out of 17 files (includes 2 Cargo-generated).
- warning: The crates.io package has no commit hash associated with it.
- Publish a new version, without using
--allow-dirty
flag. Make sure all changes are committed before publishing. Useinclude
/exclude
inCargo.toml
to omit unnecessary files.
- Publish a new version, without using
- warning: There is no matching git tag containing version '0.1.4'.
- warning: Had to perform fuzzy search of the head branch due to lack of commit information in the package.
Files in the crates.io crate compared to the repository:
Cargo.lock
does not match the repository.Cargo.toml.orig
does not match the repository.
Fetched
https://github.com/alisomay/smrec.git
6a278b7c9172d8eee50726544260f8a005ca9a01.Checked on 2024-07-24
This check is experimental.
- warning: The crates.io package has no commit hash associated with it.
Imprecise dependency requirement camino = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
camino = "1.1.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.
field33_rdftk_core_temporary_fork
Dependency error-chain 0.12 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency uuid 0.8 is significantly outdated
Upgrade to 1.15.0 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 = ["algorithms"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["statement", "rdf", "literals", "node", "triple"]
(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.
koto-midi
Could not fetch repository
We've had trouble cloning git repo from
https://github\.com/alisomay/koto\_midi\.git
At the moment we only support git, and attempt fetching when we index a new release. Cloning is necessary for lib.rs to gather data that is missing on crates.io, e.g. to correctly resolve relative URLs in README files, which depend on repository layout and non-standard URL schemes of repository hosts.
No readme property
Specify path to a
README
file for the project, so that information about is included in the crates.io tarball.Dependency koto 0.14 is outdated
Consider upgrading to 0.15.2 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["multimedia::audio"]
to theCargo.toml
.
smrec, field33_rdftk_names_temporary_fork, field33_rdftk_core_temporary_fork
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.
libpd-sys
*-sys crate without links property
If this crate uses C libraries with public symbols, consider adding
links = "pd"
to crate'sCargo.toml
to avoid other libraries colliding with them. Note that the links property adds exclusivity to dependency resolution, but doesn't do any linking.This is also needed to protect your crate from duplicate older versions of itself. C symbols are global, and duplicate symbols can cause all sorts of breakage.
Dependency bindgen 0.69.1 is outdated
Upgrade to 0.71.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Needs more categories
Please more specific categories that describe functionality of the crate. Expand
categories = ["multimedia::audio", "external-ffi-bindings"]
in yourCargo.toml
.Published crate contains binary files
The crate contains binary files (JAR file, Windows DLL, obscure autoconf code, static library). Crates are meant to be compiled from source. Please check that you haven't published temporary build files by accident. If you have test fixtures, consider excluding them from crates-io tarball, since Cargo doesn't run tests from crates-io packages.
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.
field33_rdftk_names_temporary_fork
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["rust-patterns"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["rdf", "namespaces", "iri", "vocabulary", "string"]
(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.
rytm-sys
*-sys crate without links property
If this crate uses C libraries with public symbols, consider adding
links = "rytm"
to crate'sCargo.toml
to avoid other libraries colliding with them. Note that the links property adds exclusivity to dependency resolution, but doesn't do any linking.Dependency bindgen 0.69.1 is outdated
Upgrade to 0.71.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Needs more categories
Please more specific categories that describe functionality of the crate. Expand
categories = ["multimedia::audio", "external-ffi-bindings"]
in yourCargo.toml
.
discovery_crate_companion, discovery_crate_other_companion, discovery_crate
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.
discovery_crate_companion, discovery_crate_other_companion, discovery_crate
Crate contains junk files
The crate contains boilerplate Rust files with no real functionality.
discovery_crate_companion, discovery_crate_other_companion, discovery_crate
Could not fetch repository
We've had trouble cloning git repo from
https://not\-applicable/
No issues found in: rytm-rs-macro pollenwall
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.