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.
maomi, maomi-tree, maomi-skin, maomi-dom, maomi-tools, maomi-dom-template, lazy-observer, me-cell, maomi-dom-macro, maomi-macro
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.
maomi
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["web-programming::http-server"]
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 = ["web-apps", "web-framework", "applications", "template", "strict"]
(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.
glass-easel-template-compiler
Dependency cbindgen 0.21 is significantly outdated
Upgrade to 0.27.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 sourcemap 7.0.1 is significantly outdated
Upgrade to 9.1.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 clap 2 is outdated
Upgrade to 4.5.22 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency compact_str 0.7 is outdated
Upgrade to 0.8.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement clap = 2
Cargo does not always pick latest versions of dependencies! Specify the version as
clap = "4.5.22"
. 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.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["web-programming"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["template", "compiler", "wasm", "glass-easel", "browser"]
(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 'cbindgen' 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 'cbindgen' may have been unintentional.
glass-easel-i18n
Imprecise dependency requirement serde = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
serde = "1.0.215"
. 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.
Published crate doesn't match its repository
Partially verified 16 files (includes 3 Cargo-generated).
Files in the crates.io crate compared to the repository:
Cargo.lock
exists, but elsewhere in the repo.
Looked for the crate in
glass-easel-i18n/
. Fetchedhttps://github.com/wechat-miniprogram/glass-easel-i18n.git
taggedv0.5.2
(d63a9b6633ff1e3305cb882bc2ca034fcdb66f12).Checked on 2024-07-24
This check is experimental.
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 glass-easel-template-compiler 0.5.4 is slightly outdated
Consider upgrading to 0.10.3 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["internationalization"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["internationalization", "glass-easel", "non-invasive"]
(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.
float-pigment-css
Dependency cbindgen 0.19 is significantly outdated
Upgrade to 0.27.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency console_log 0.1 is significantly outdated
Upgrade to 1.0.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency fixed =1.23 is significantly outdated
Upgrade to 1.28.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency half ^2.0.0,<2.3.0 is significantly outdated
Upgrade to 2.4.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency hashbrown 0.14 is significantly outdated
Upgrade to 0.15.2 to get all the fixes, and avoid causing duplicate dependencies in projects.
Locked dependency version fixed =1.23
This can easily cause a dependency resolution conflict. If you must work around a semver-breaking dependency that can't be yanked, use a range of versions or fork it.
Dependency bit-set 0.5.2 is a bit outdated
Consider upgrading to 0.8.0 to get all the fixes and improvements.
Dependency colorful 0.2.1 is a bit outdated
Consider upgrading to 0.3.2 to get all the fixes and improvements.
Dependency toml 0.5.8 is outdated
Upgrade to 0.8.19 to get all the fixes, and avoid causing duplicate dependencies in projects.
Optional dependency 'colorful' 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 'colorful', 'fs_extra', 'console_error_panic_hook', 'console_log', 'wasm-bindgen', 'toml', 'js-sys', 'cbindgen' may have been unintentional.
glass-easel-stylesheet-compiler
Dependency sourcemap 6 is outdated
Upgrade to 9.1.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.22"
. 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 = ["style-sheet", "css", "glass-easel", "compiler", "isolation"]
(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.
maomi-tools
Dependency toml 0.7 is significantly outdated
Upgrade to 0.8.19 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 = ["wasm", "web-programming::http-server"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "web-framework", "applications", "maomi", "strict"]
(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.
float-pigment-forest
Dependency cbindgen 0.19 is significantly outdated
Upgrade to 0.27.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency bit-vec 0.6.3 is a bit outdated
Consider upgrading to 0.8.0 to get all the fixes and improvements.
Optional dependency 'fs_extra' 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 'fs_extra', 'cbindgen' may have been unintentional.
maomi-skin, maomi-dom-macro, maomi-macro, float-pigment-css-macro, float-pigment-forest-macro
Dependency syn 1.0 is significantly outdated
Upgrade to 2.0.90 to get all the fixes, and avoid causing duplicate dependencies in projects.
maomi-dom-template
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.
Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "applications", "template", "strict", "programming"]
(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.
maomi-dom
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["web-programming"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "web-framework", "dom", "strict", "applications"]
(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 'html-escape' 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 'html-escape' may have been unintentional.
glass-easel-stylesheet-compiler, maomi-tree, maomi-skin, maomi-dom-template, lazy-observer, me-cell
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["wasm"]
to theCargo.toml
.
glass-easel-stylesheet-compiler, glass-easel-template-compiler, maomi-dom-template
Dependency console_log 0.2 is a bit outdated
Consider upgrading to 1.0.0 to get all the fixes and improvements.
glass-easel-stylesheet-compiler, glass-easel-template-compiler, maomi-dom-template
Dependency env_logger 0.9 is outdated
Upgrade to 0.11.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
maomi-tree
Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "web-framework", "applications", "strict", "programming"]
(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.
maomi-skin
Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "web-framework", "applications", "strict", "template"]
(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.
maomi-skin, maomi-tools, maomi-macro
Dependency rustc-hash 1.1 is a bit outdated
Consider upgrading to 2.1.0 to get all the fixes and improvements.
float-pigment-mlp, float-pigment-css-macro
Dependency rustc-hash 1.1.0 is a bit outdated
Consider upgrading to 2.1.0 to get all the fixes and improvements.
float-pigment-layout, float-pigment-forest
Dependency lru 0.7.8 is outdated
Upgrade to 0.12.5 to get all the fixes, and avoid causing duplicate dependencies in projects.
lazy-observer
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?
Missing keywords
Help users find your crates. Add
keywords = ["web-apps", "data-store", "observer", "applications", "lazily"]
(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.
maomi-macro
Dependency toml 0.7 is significantly outdated
Upgrade to 0.8.19 to get all the fixes, and avoid causing duplicate dependencies in projects.
me-cell
Latest stable release is old
It's been over 4 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"
).Missing keywords
Help users find your crates. Add
keywords = ["maomi", "building", "tree", "structures", "cell"]
(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.
float-pigment-css-macro
Dependency toml 0.5.8 is outdated
Upgrade to 0.8.19 to get all the fixes, and avoid causing duplicate dependencies in projects.
No issues found in: float-pigment float-pigment-consistent-bincode
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.