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.
automotive_diag, osmnodecache, varnish-sys, varnish-macros
Imprecise dependency requirement serde = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
serde = "1.0.219"
. 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.
martin
Published crate doesn't match its repository
Verified 80 out of 81 files (includes 2 Cargo-generated).
- error: Cargo.lock was suspiciously large.
- If you don't need this file, use
include
orexclude
inCargo.toml
, otherwise file a bug at https://gitlab.com/lib.rs/main
- If you don't need this file, use
Looked for the crate in
martin/
. Fetchedhttps://github.com/maplibre/martin.git
taggedv0.16.0
(3bfc831161191c13a13df49e71a17e0d9a24b2b0).Checked on 2025-04-08
This check is experimental.
- error: Cargo.lock was suspiciously large.
Imprecise dependency requirement actix-http = 3
Cargo does not always pick latest versions of dependencies! Specify the version as
actix-http = "3.11.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.
martin, mbtiles, martin-mbtiles
Dependency serde_yaml 0.9 has issues
It may not be actively developed any more. Consider changing the dependency.
martin, pmtiles, maplibre_native
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.
maplibre
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 geo 0.23.1 is significantly outdated
Upgrade to 0.30.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 geozero 0.9.7 is significantly outdated
Upgrade to 0.14.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency instant 0.1.12 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency reqwest-middleware 0.1.6 is significantly outdated
Upgrade to 0.4.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rstar 0.9.3 is significantly outdated
Upgrade to 0.12.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency tracing-tracy 0.10 is significantly outdated
Upgrade to 0.11.4 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency wgpu 0.14.0 is significantly outdated
Upgrade to 25.0.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.Dependency csscolorparser 0.6.2 is outdated
Consider upgrading to 0.7.0 to get all the fixes and improvements.
Dependency downcast-rs 1.2.0 is a bit outdated
Consider upgrading to 2.0.1 to get all the fixes and improvements.
Dependency env_logger 0.10.0 is outdated
Upgrade to 0.11.8 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency image 0.24 is outdated
Upgrade to 0.25.6 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency raw-window-handle 0.5.0 is outdated
Upgrade to 0.6.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency reqwest 0.11.11 is outdated
Upgrade to 0.12.15 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency thiserror 1.0 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Dependency tile-grid 0.3.0 is outdated
Consider upgrading to 0.6.2 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["science::geo"]
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.
Optional dependency 'png' 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 'png', 'image', 'tracing-subscriber', 'tracing-tracy' may have been unintentional.
pmtiles
Dependency fmmap 0.3 is slightly outdated
Consider upgrading to 0.4.0 to get all the fixes and improvements.
Dependency thiserror 1 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Imprecise dependency requirement bytes = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
bytes = "1.10.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.
martin-tile-utils
Dependency brotli >=5, <8 is outdated
Upgrade to 8.0.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement flate2 = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
flate2 = "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.
mbtiles
Dependency sqlite-hashes 0.9.0 is outdated
Upgrade to 0.10.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement clap = 4
Cargo does not always pick latest versions of dependencies! Specify the version as
clap = "4.5.38"
. 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.
osm2rdf
Imprecise dependency requirement anyhow = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
anyhow = "1.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.Published crate doesn't match its repository
Partially verified 18 files (includes 2 Cargo-generated).
Fetched
https://github.com/nyurik/osm2rdf.git
e1f6c56f75d4efaee95ee7f63d41f5959d40aeeb.Checked on 2024-08-10
Dependency bytesize 1 is slightly outdated
Consider upgrading to 2.0.1 to get all the fixes and improvements.
Dependency env_logger 0.10 is outdated
Upgrade to 0.11.8 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency geo 0.26 is outdated
Upgrade to 0.30.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency osmnodecache 0.8 is slightly outdated
Consider upgrading to 0.9.0 to get all the fixes and improvements.
osmnodecache
Dependency bincode 1 is slightly outdated
Consider upgrading to 2.0.1 to get all the fixes and improvements.
maplibre_native
*-sys crate without links property
If this crate uses C libraries with public symbols, consider adding
links = "maplibre_native"
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.
varnish-sys
Dependency bindgen_helpers 0.3.0 is slightly outdated
Consider upgrading to 0.4.3 to get all the fixes and improvements.
martin-mbtiles
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]
to theCargo.toml
.Dependency env_logger 0.10 is outdated
Upgrade to 0.11.8 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency martin-tile-utils 0.1.0 is outdated
Upgrade to 0.6.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency sqlite-hashes 0.5 is outdated
Upgrade to 0.10.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency sqlx 0.7 is outdated
Upgrade to 0.8.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency thiserror 1 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Dependency tilejson 0.3 is outdated
Upgrade to 0.4.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Failed to verify create's content against its repository
Partially verified 51 files (includes 3 Cargo-generated).
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.7.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
Files in the crates.io crate compared to the repository:
Cargo.lock
not found.
Looked for the crate in
martin-mbtiles/
. Fetchedhttps://github.com/maplibre/martin.git
8a8814e7cc97d44f4d194586b3e9deb904c99488.Checked on 2025-04-09
- warning: Crate tarball has been published from a different commit than the commit tagged by git tag 'v0.7.0'.
Imprecise dependency requirement clap = 4
Cargo does not always pick latest versions of dependencies! Specify the version as
clap = "4.5.38"
. 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.Missing keywords
Help users find your crates. Add
keywords = ["mbtiles", "martin-mbtiles", "martin", "deprecated"]
(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.
mbtileserver
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]
to theCargo.toml
.Dependency clap 3.1 is significantly outdated
Consider upgrading to 4.5.38 to get all the fixes and improvements.
Dependency libsqlite3-sys 0.24 is significantly outdated
Consider upgrading to 0.33.0 to get all the fixes and improvements.
Dependency r2d2_sqlite 0.20 is significantly outdated
Consider upgrading to 0.28.0 to get all the fixes and improvements.
Dependency rusqlite 0.27 is significantly outdated
Consider upgrading to 0.35.0 to get all the fixes and improvements.
Published crate doesn't match its repository
Partially verified 17 files (includes 3 Cargo-generated).
Files in the crates.io crate compared to the repository:
Cargo.lock
does not match the repository.
Fetched
https://github.com/maplibre/mbtileserver-rs.git
38a9f2d823c671ca2107595cb40be38035bb5a7b.Checked on 2024-08-10
Dependency hyper 0.14 is outdated
Consider upgrading to 1.6.0 to get all the fixes and improvements.
Dependency pretty_env_logger 0.4 is outdated
Consider upgrading to 0.5.0 to get all the fixes and improvements.
Dependency tilejson 0.3 is outdated
Consider upgrading to 0.4.2 to get all the fixes and improvements.
Imprecise dependency requirement flate2 = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
flate2 = "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.License MIT/Apache-2.0 is not in SPDX syntax
Use
OR
instead of/
.Missing keywords
Help users find your crates. Add
keywords = ["mbtileserver", "header", "tile", "deprecated", "mbtiles"]
(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.
No issues found in: sqlite-hashes sqlite-compressions bindgen_helpers varnish fastpfor delta-encoding noncrypto-digests dup-indexer http-content-range auto_uds
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.