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.
headless_chrome
Imprecise dependency requirement anyhow = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
anyhow = "1.0.97"
. 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.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["development-tools::testing", "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 = ["chrome", "headless", "browser", "puppeteer", "dev-tools"]
(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 'ureq' 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 'ureq', 'walkdir', 'zip', 'directories' may have been unintentional.
auto_generate_cdp
Dependency convert_case 0.4.0 is significantly outdated
Upgrade to 0.8.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 ureq 2.5 is a bit outdated
Consider upgrading to 3.0.8 to get all the fixes and improvements.
Easy way to bump dependencies:
cargo install cargo-edit; cargo upgrade -i
; Also check out Dependabot service on GitHub.Failed to verify create's content against its repository
Verified 12 out of 13 files (includes 3 Cargo-generated).
- warning: Crate tarball has been published from the commit 26fa2c7ef11065fcf8841a7ec75adfd87db03b47, which is not in the repository.
- 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: Found a Cargo.toml for this package in its repo (via tags), but the version was different.
- Make sure to commit and tag after bumping the version number.
- 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/mdrokz/auto_generate_cdp.git
815ee0f038944d1cef0544c1312c13adc68a9ded.Checked on 2025-02-16
This check is experimental.
- warning: Crate tarball has been published from the commit 26fa2c7ef11065fcf8841a7ec75adfd87db03b47, which is not in the repository.
llama_cpp_rs
Dependency bindgen 0.66.1 is significantly outdated
Upgrade to 0.71.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
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.
secugen_rs
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.Dependency bindgen 0.66.1 is significantly outdated
Upgrade to 0.71.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Published crate contains binary files
The crate contains binary files (ELF lib, Windows DLL, 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.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.