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.
tremor-script, tremor-value, tremor-influx
Latest prerelease is old
It's been over 6 months. 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"
).Users pay attention to the latest release date. Even if the crate is perfectly fine as-is, users may not know that.
tremor-language-server
Latest prerelease is old
It's been over 2 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"
).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 async-std 1.12 has issues
It may not be actively developed any more. Consider changing the dependency.
Dependency halfbrown 0.1 is significantly outdated
Consider upgrading to 0.3.0 to get all the fixes and improvements.
In Cargo, different 0.x versions are considered incompatible, so this is a semver-major upgrade.
Dependency tower-lsp 0.17 is significantly outdated
Consider upgrading to 0.20.0 to get all the fixes and improvements.
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["text-editors"]
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 = ["language-server", "trill", "tremor", "error", "client"]
(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.
tremor-influx
Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["…"]
to theCargo.toml
.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.Missing keywords
Help users find your crates. Add
keywords = ["tremor", "parser", "tremor-influx", "value"]
(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.
tremor-kv
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.
Published crate doesn't match its repository
Partially verified 22 files (includes 2 Cargo-generated).
Fetched
https://github.com/tremor-rs/kv.git
967e70bc1285ce6f537ee8ab26cd196a59bad8c7.Checked on 2025-04-26
This check is experimental.
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 = ["tremor", "tremor-kv", "extractor"]
(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.
tremor-value
Dependency halfbrown 0.2 is a bit outdated
Consider upgrading to 0.3.0 to get all the fixes and improvements.
Dependency simd-json 0.13 is outdated
Upgrade to 0.15.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency simd-json-derive 0.13 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 = ["encoding"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["tremor", "interpreter", "tremor-value", "codebase", "tremor-runtime"]
(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.
tremor-script
Dependency chrono-tz 0.9 is significantly outdated
Upgrade to 0.10.3 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency error-chain 0.12 has issues
It may not be actively developed any more. Consider changing the dependency.
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 codespan 0.11 is a bit outdated
Consider upgrading to 0.12.0 to get all the fixes and improvements.
Dependency downcast-rs 1.2 is a bit 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 halfbrown 0.2 is a bit outdated
Consider upgrading to 0.3.0 to get all the fixes and improvements.
Dependency lalrpop 0.20 is outdated
Upgrade to 0.22.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency lalrpop-util 0.20 is outdated
Upgrade to 0.22.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency rand 0.8 is a bit outdated
Consider upgrading to 0.9.1 to get all the fixes and improvements.
Dependency simd-json 0.13 is outdated
Upgrade to 0.15.1 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency simd-json-derive 0.13 is outdated
Upgrade to 0.16.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency tremor-kv 0.6 is outdated
Upgrade to 0.7.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Imprecise dependency requirement byteorder = 1
Cargo does not always pick latest versions of dependencies! Specify the version as
byteorder = "1.5.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.Missing categories
Categories improve browsing of lib.rs and crates.io. Add
categories = ["compilers"]
to theCargo.toml
.Missing keywords
Help users find your crates. Add
keywords = ["error", "tremor", "interpreter"]
(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.
tremor-otelapis
Dependency tonic 0.12 is outdated
Upgrade to 0.13.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Dependency tonic-build 0.12 is outdated
Upgrade to 0.13.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
Failed to verify create's content against its repository
Partially verified 48 files (includes 2 Cargo-generated).
- warning: The crates.io package has no information about its path inside its repository.
Fetched
https://github.com/tremor-rs/tremor-otelapis.git
taggedv0.5.0
(d4de744e775c7ec817a39bc97223c3812a7c5926).Checked on 2025-04-27
tremor-script, tremor-value, tremor-influx
Dependency value-trait 0.8 is outdated
Upgrade to 0.11.0 to get all the fixes, and avoid causing duplicate dependencies in projects.
If some of these crates are unmaintained and shouldn't be checked, yank them or add [badges.maintenance]
to their
status = "deprecated"Cargo.toml
.