docs.rs failed to build kdeets-0.1.19
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
kdeets-0.1.27
kdeets
A utility to query crates.io for information about a crate.
Feature set
- Versions for a crate
- Rust versions for dependencies
- Setup limited clone for testing
Installation
Install the CLI using cargo install.
Check program is available and the version installed.
$ kdeets --version
kdeets 0.1.19
Usage
The available commands can be seen by running the command with the help flag.
)
Versions for a crate (cmd: crate)
Display the key versions for the crate.
$ kdeets crate -h
Query crates.io for information about a crate
Usage: kdeets crate [OPTIONS] <CRATE>
Arguments:
<CRATE> The name of the crate
Options:
-v, --verbose... More output per occurrence
-q, --quiet... Less output per occurrence
-e, --earliest First version ever published. May be yanked
-n, --normal Returns crate version with the highest version number according to semver, but excludes pre-release and yanked versions
-t, --top The highest version as per semantic versioning specification
-r, --recent The last release by date, even if it’s yanked or less than highest version
-l, --list List all versions of the crate
-k, --key List key values (equivalent to `-entr`)
-a, --all List all versions and key values (equivalent to `-entrl`)
-h, --help Print help
-V, --version Print version
This command queries crates.io for information about a crate and reports based on the options selected.
Crates.io tracks for each crate the following versions:
earliest: The first version ever published. May be yanked.normal: Returns crate version with the highest version number according to semver, but excludes pre-release and yanked versions.top: The highest version as per semantic versioning specification.recent: The last release by date, even if it’s yanked or less than highest version.
The key option lists all of these versions (equivalent to -entr).
The command can create a table listing the yank status and version for all versions of the crate.
The all option lists all versions and key values (equivalent to -entrl).
$ kdeets --no-colour crate -entrl some_crate
Crate versions for some_crate.
🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶🭶
Earliest version: 0.1.0
Highest normal version: 0.2.1
Highest version: 0.2.1
Most recent version: 0.2.1
Yanked Version
No 0.1.0
No 0.1.1
No 0.1.3
No 0.2.1
License
Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).