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.
bevy_magic_fx
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.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.
Dependency ron 0.8.1 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.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
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 = ["bevy", "magic", "fx"]
(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.
bevy_material_wizard
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.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.Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
bevy_foliage_tool
Dependency bincode 1.3.3 is slightly outdated
Consider upgrading to 2.0.1 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.Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.8.5 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
to theCargo.toml
.
spirit_edit_core
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.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.No readme property
Specify path to a
README
file for the project, so that information about is included in the crates.io tarball.Dependency rand 0.8 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
degen-sql
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 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 inquire 0.6.2 is outdated
Upgrade to 0.7.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency thiserror 1.0.49 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
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 = ["sql", "deadpool", "postgresql"]
(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.
bevy_material_tool
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 bevy 0.14.0 is outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
degen_toon_terrain
Published crate doesn't match its repository
Verified 28 out of 29 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
Fetched
https://github.com/ethereumdegen/degen_toon_terrain.git
3f295990ed9f03a54cd37cdbb4735233d988a47d.Checked on 2025-04-28
This check is experimental.
- error: Cargo.lock was suspiciously large.
Dependency bincode 1.3.3 is slightly outdated
Consider upgrading to 2.0.1 to get all the fixes and improvements.
Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.8.5 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
to theCargo.toml
.Optional dependency 'avian3d' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Feature 'avian3d' may have been unintentional.
bevy_clay_tiles
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.
Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency geo 0.28.0 is outdated
Upgrade to 0.30.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.8.5 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
to theCargo.toml
.
bevy_foliage_paint
Failed to verify create's content against its repository
Verified 6 out of 17 files (includes 3 Cargo-generated).
- warning: Could not find Cargo.toml for this package in its repo (via tags).
- Make sure the
repository
URL inCargo.toml
is correct
- Make sure the
Files in the crates.io crate compared to the repository:
Cargo.lock
does not match the repository.todo.md
does not match the repository.readme.md
does not match the repository.Cargo.toml.orig
does not match the repository.src/
lib.rs
does not match the repository.foliage.rs
not found.foliage_chunk.rs
not found.foliage_config.rs
not found.tool_preview.rs
does not match the repository.y_offset_map.rs
not found.edit.rs
does not match the repository.density_map.rs
not found.
Fetched
https://github.com/ethereumdegen/bevy_regions.git
8767ffd79abbf7d21804d43a955d11609685e97a.Checked on 2024-07-28
- warning: Could not find Cargo.toml for this package in its repo (via tags).
Dependency bevy 0.13.1 is significantly outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bevy-inspector-egui 0.24.0 is significantly outdated
Upgrade to 0.31.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bevy_mod_sysfail 6.0.0 is outdated
Upgrade to 7.0.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency image 0.24.7 is outdated
Upgrade to 0.25.6 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
bevy_mesh_terrain
Dependency bevy 0.15.0 is outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bincode 1.3.3 is slightly outdated
Consider upgrading to 2.0.1 to get all the fixes and improvements.
Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.8.5 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
to theCargo.toml
.Optional dependency 'avian3d' exposed as an implicit feature
Cargo automatically makes publicly-available crate features for every optional dependency, unless the dependencies are referenced using
dep:
syntax. Feature 'avian3d' may have been unintentional.
degen_toon_water, degen_toon_clouds, bevy_hanabi_loader, bevy_hammer_ui, discriminant_ord_eq, discriminant_hash_eq
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.
bevy_regions
Published crate doesn't match its repository
Partially verified 18 files (includes 2 Cargo-generated).
Fetched
https://github.com/ethereumdegen/bevy_regions.git
8b953eda6002439302a084bd1aac6e2dfdeb5435.Checked on 2025-04-28
Dependency futures-lite 1.13.0 is outdated
Upgrade to 2.6.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency thiserror 1.0.48 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
degen_toon_water
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.Missing keywords
Help users find your crates. Add
keywords = ["bevy", "water", "material", "adventure", "com"]
(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.
degen_toon_clouds
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.Missing keywords
Help users find your crates. Add
keywords = ["bevy", "clouds", "toon", "material"]
(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.
degen-websockets
Dependency tokio-tungstenite 0.19.0 is significantly outdated
Upgrade to 0.26.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Published crate doesn't match its repository
Partially verified 19 files (includes 2 Cargo-generated).
Fetched
https://github.com/ethereumdegen/degen-websockets.git
0dd4e215af68a906f469d9d2df370108aea70bcd.Checked on 2024-07-24
Dependency thiserror 1.0.40 is a bit outdated
Consider upgrading to 2.0.12 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["web-programming::websocket"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["websocket", "message", "server"]
(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.
turbo_atlas_icons
Dependency bevy 0.15 is outdated
Upgrade to 0.16.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 = ["game-development"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["icons", "turbo", "plugin", "bevy"]
(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.
bevy_hanabi_loader
Dependency bevy 0.15.0 is outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bevy-inspector-egui 0.28.0 is outdated
Upgrade to 0.31.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bevy_egui 0.31 is outdated
Upgrade to 0.34.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bevy_hanabi 0.14.0 is outdated
Consider upgrading to 0.15.1 to get all the fixes and improvements.
Missing keywords
Help users find your crates. Add
keywords = ["loader", "hanabi", "bevy", "file"]
(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.
degen-logger
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]
to theCargo.toml
.Dependency colored 2.0.4 is a bit outdated
Consider upgrading to 3.0.0 to get all the fixes and improvements.
Failed to verify create's content against its repository
Partially verified 8 files (includes 2 Cargo-generated).
- warning: The crates.io package has no information about its path inside its repository.
- warning: There is no matching git tag containing version '0.2.0'.
git tag v0.2.0 c54fa8eb638adc4c27bf2144963a4091d288580d; git push origin --tags
Fetched
https://github.com/ethereumdegen/degen-logging.git
c54fa8eb638adc4c27bf2144963a4091d288580d.Checked on 2024-08-04
Missing keywords
Help users find your crates. Add
keywords = ["logging", "degen-logger", "degen", "console"]
(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.
vibegraph
Cryptocurrency crate
This crate has been classified as related to cyrptocurrencies. If you believe this categorization is a mistake, then please review crate's categories and keywords, or file a bug. If it is related, then please reconsider your choices, and yank it.
Author of this site is firmly convinced that cryptocurrencies have a net-negative effect on society.
degen_toon_water, bevy_regions, degen_toon_clouds, bevy_hanabi_loader, bevy_foliage_paint
Dependency ron 0.8.1 is outdated
Consider upgrading to 0.10.1 to get all the fixes and improvements.
degen_toon_water, bevy_regions, degen_toon_clouds, bevy_hanabi_loader, bevy_hammer_ui, bevy_foliage_paint
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["game-development"]
to theCargo.toml
.
bevy_regions, bevy_foliage_paint, degen-websockets
Dependency rand 0.8.5 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
bevy_hammer_ui
Dependency bevy 0.15.0 is outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Missing keywords
Help users find your crates. Add
keywords = ["ui", "bevy", "bevy-hammer-ui"]
(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.
discriminant_ord_eq
Dependency syn 1.0 is significantly outdated
Upgrade to 2.0.101 to get all the fixes, and avoid causing duplicate dependencies in projects.
discriminant_hash_eq
Dependency syn 1.0 is significantly outdated
Upgrade to 2.0.101 to get all the fixes, and avoid causing duplicate dependencies in projects.
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.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.