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.
vicardi
Imprecise dependency requirement serde = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
serde = "1.0.228". IfCargo.lockends 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-versionsflag, 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.
orzklv
Imprecise dependency requirement tokio = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
tokio = "1.49.0". IfCargo.lockends 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-versionsflag, 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-versionsCargo option, because it's very easy to accidentally use a feature added in a later version.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["network-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.
gsettings-desktop-schemas-xinux
Published crate doesn't match its repository
Partially verified 9 files (includes 3 Cargo-generated).
- error: Repository had submodule with an invalid or unsupported path: 'gir-files'
- File a bug https://gitlab.com/lib.rs/main if you think it should work
- error: Repository had submodule with an invalid or unsupported path: 'gir'
Files in the crates.io crate compared to the repository:
Cargo.locknot found.
Looked for the crate in
gsettings-desktop-schemas/. Fetchedhttps://github.com/xinux-org/desktop-schemas.git85e26d6b4d11ecdd0891f884b16c8e90c5c8ed8c.Checked on 2025-03-02
This check is experimental.
- error: Repository had submodule with an invalid or unsupported path: 'gir-files'
README missing from the repository
We've searched
https://github\.com/xinux\-org/desktop\-schemas\.gitand could not find a README file there.Dependency glib 0.20.9 is significantly outdated
Upgrade to 0.21.5 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.
No readme property
Specify path to a
READMEfile for the project, so that information about is included in the crates.io tarball.
gnome-desktop-xinux
Failed to verify create's content against its repository
Could not check any files
- warning: The crates.io package has no information about its path inside its repository.
- error: Repository doesn't exist: Can't checkout the repository. It's either gone or private: remote authentication required but no callback set; class=Http (34); code=Auth (-16).
- Make sure the
repositoryURL inCargo.tomlis correct and works withgit clone. The repository must be public.
- Make sure the
Checked on 2025-03-02
Could not fetch repository
We've had trouble cloning git repo from
https://gitlab\.gnome\.org/xinux\-org/desktopAt 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.
Dependency gdk-pixbuf 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency gio 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency glib 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
No readme property
Specify path to a
READMEfile for the project, so that information about is included in the crates.io tarball.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.
gnome-desktop-sys-xinux
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]to theCargo.toml.No repository property
Specify git repository URL in
Cargo.tomlto help users find more information, contribute, and for lib.rs to read more info.Dependency gdk-pixbuf-sys 0.20.7 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency gio-sys 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency glib-sys 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency gobject-sys 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
No readme property
Specify path to a
READMEfile for the project, so that information about is included in the crates.io tarball.Dependency system-deps 6 is outdated
Consider upgrading to 7.0.7 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.Missing keywords
Help users find your crates. Add
keywords = ["gnome-desktop", "gnome-desktop-4", "libgnome-desktop-4", "bindings"](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.
gsettings-desktop-schemas-sys-xinux
No repository property
Specify git repository URL in
Cargo.tomlto help users find more information, contribute, and for lib.rs to read more info.Dependency glib-sys 0.20.9 is significantly outdated
Upgrade to 0.21.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
No readme property
Specify path to a
READMEfile for the project, so that information about is included in the crates.io tarball.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["database"]to theCargo.toml.Missing keywords
Help users find your crates. Add
keywords = ["desktop", "schema", "gsettings", "bindings"](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.
havo
Dependency colored 2.0.0 is outdated
Consider upgrading to 3.0.0 to get all the fixes and improvements.
Imprecise dependency requirement clap = 4
Cargo does not always pick latest versions of dependencies! Specify the version as
clap = "4.5.54". IfCargo.lockends 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-versionsflag, used by users of old Rust versions.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["compilers"]to theCargo.toml.
raisensu
Imprecise dependency requirement regex = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
regex = "1.12.0". IfCargo.lockends 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-versionsflag, used by users of old Rust versions.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["command-line-utilities"]to theCargo.toml.Missing keywords
Help users find your crates. Add
keywords = ["sokhibjon", "manager", "created", "uzbek", "find"](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.
bulut
Dependency colored 1.6.1 is significantly outdated
Upgrade to 3.0.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency time 0.1.40 is significantly outdated
Upgrade to 0.3.44 to get all the fixes, and avoid causing duplicate dependencies in projects.
Latest stable release is old
It's been over 3 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?
moan
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["encoding"]to theCargo.toml.Missing keywords
Help users find your crates. Add
keywords = ["encoding-decoding", "api", "morse", "hentai", "encode"](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.
osmojit-sys
Dependency bindgen 0.66.1 is significantly outdated
Upgrade to 0.72.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
*-sys crate without links property
If this crate uses C libraries with public symbols, consider adding
links = "osmojit"to crate'sCargo.tomlto 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.
README missing from crate tarball
Cargo sometimes fails to package the
READMEfile. Ensure the path to theREADMEinCargo.tomlis valid, and points to a file inside the crate's directory.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.
maydon
Dependency convert_case 0.7.1 is significantly outdated
Upgrade to 0.10.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
osmojit-derive
Dependency proc-macro2 0.4 is significantly outdated
Upgrade to 1.0.105 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency quote 0.6 is significantly outdated
Upgrade to 1.0.43 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency syn 0.15 is significantly outdated
Upgrade to 2.0.113 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency synstructure 0.10 is significantly outdated
Upgrade to 0.13.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
README missing from crate tarball
Cargo sometimes fails to package the
READMEfile. Ensure the path to theREADMEinCargo.tomlis valid, and points to a file inside the crate's directory.
ecrous
Crate contains junk files
The crate contains boilerplate Rust files with no real functionality.
bleur
Internal error
We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/bleur ) failed. Please try again later.
libxinux
Internal error
We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/libxinux ) failed. Please try again later.
awzod
Internal error
We couldn't check this crate at this time, because: timed out validating Origin( lib.rs/crates/awzod ). Please try again later.
makudaun
Internal error
We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/makudaun ) failed. Please try again later.
osmon
Internal error
We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/osmon ) failed. Please try again later.
korrektor
Internal error
We couldn't check this crate at this time, because: Validation of Origin( lib.rs/crates/korrektor ) failed. Please try again later.
No issues found in: zang-macro
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance] to their
status = "deprecated"Cargo.toml.