https://github.com/bejker123/cargo-crates
A tool to easily list installed cargo packages an their descriptions!
https://github.com/bejker123/cargo-crates
cargo cargo-plugin cargo-subcommand cli rust utility
Last synced: 5 months ago
JSON representation
A tool to easily list installed cargo packages an their descriptions!
- Host: GitHub
- URL: https://github.com/bejker123/cargo-crates
- Owner: bejker123
- Created: 2023-05-04T09:37:36.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-25T19:10:51.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T14:20:30.075Z (over 1 year ago)
- Topics: cargo, cargo-plugin, cargo-subcommand, cli, rust, utility
- Language: Rust
- Homepage: https://crates.io/crates/cargo-ls-crates
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Installation
#### 1. Installing from crates.io (cargo)
First make sure you have [cargo](https://rustup.rs/) installed.
Than you can the command below.
```sh
$ cargo install cargo-crates
```
#### 2. Building from source
```sh
#clone the repo
$ git clone https://github.com/bejker123/cargo-crates
$ cd cargo-crates
#build it
$ cargo build --release
```
# Usage:
```sh
$ cargo ls-crates [OPTIONS]
# OPTIONS:
# -h --help print help
# -v print versions
# -d print descriptions
# Examples:
$ cargo ls-crates -v # print package names and versions
$ cargo ls-crates -d # print package names and descriptions
$ cargo ls-crates -vd # print package names, descriptions and versions
$ cargo ls-crates -dv # print package names, descriptions and versions
# Note: Invalid arguments will be ignored.
```