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.
rquickjs
Imprecise dependency requirement either = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
either = "1.15.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.Optional dependency 'indexmap-rs' 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 'indexmap-rs', 'rquickjs-macro', 'either-rs' may have been unintentional.
rquickjs-sys
*-sys crate without links property
If this crate uses C libraries with public symbols, consider adding
links = "rquickjs"
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 is outdated
Upgrade to 0.71.1 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.
Imprecise dependency requirement cc = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
cc = "1.2.16"
. 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.Needs more categories
Please more specific categories that describe functionality of the crate. Expand
categories = ["web-programming", "external-ffi-bindings"]
in yourCargo.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.
reblessive, dreck
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["memory-management"]
to theCargo.toml
.
dreck
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.
rquickjs-core
Published crate doesn't match its repository
Partially verified 75 files (includes 4 Cargo-generated).
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.9.0'.
- Create git tags after comitting any changes, and commit changes after bumping versions and running
cargo update
.
- Create git tags after comitting any changes, and commit changes after bumping versions and running
- warning: Cargo.toml.orig from crates.io is not an exact match with the repository.
Files in the crates.io crate compared to the repository:
Cargo.lock
not found.Cargo.toml.orig
does not match the repository.
Looked for the crate in
core/
. Fetchedhttps://github.com/delskayn/rquickjs.git
d4a6b2aa3c6bba0448ac54209dfec44f310e276f.Checked on 2025-02-02
This check is experimental.
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.9.0'.
Imprecise dependency requirement async-lock = 3
Cargo does not always pick latest versions of dependencies! Specify the version as
async-lock = "3.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.Optional dependency 'dlopen' 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 'dlopen', 'either', 'chrono', 'indexmap', 'relative-path' may have been unintentional.
rquickjs-macro
Published crate doesn't match its repository
Partially verified 22 files (includes 4 Cargo-generated).
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.9.0'.
- Create git tags after comitting any changes, and commit changes after bumping versions and running
cargo update
.
- Create git tags after comitting any changes, and commit changes after bumping versions and running
- warning: Cargo.toml.orig from crates.io is not an exact match with the repository.
Files in the crates.io crate compared to the repository:
Cargo.lock
not found.Cargo.toml.orig
does not match the repository.
Looked for the crate in
macro/
. Fetchedhttps://github.com/delskayn/rquickjs.git
d4a6b2aa3c6bba0448ac54209dfec44f310e276f.Checked on 2025-02-16
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.9.0'.
Dependency convert_case 0.6 is a bit outdated
Consider upgrading to 0.8.0 to get all the fixes and improvements.
Imprecise dependency requirement indexmap = 2
Cargo does not always pick latest versions of dependencies! Specify the version as
indexmap = "2.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.Optional dependency 'phf_shared' 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 'phf_shared', 'phf_generator' may have been unintentional.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.