Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terror/checker
A crates.io crate name availability checker
https://github.com/terror/checker
cli rust-crate utility
Last synced: 27 days ago
JSON representation
A crates.io crate name availability checker
- Host: GitHub
- URL: https://github.com/terror/checker
- Owner: terror
- License: cc0-1.0
- Created: 2021-05-02T23:57:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-27T17:33:26.000Z (about 3 years ago)
- Last Synced: 2024-09-13T01:30:28.459Z (about 2 months ago)
- Topics: cli, rust-crate, utility
- Language: Rust
- Homepage:
- Size: 54.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- License: LICENSE
Awesome Lists containing this project
README
## checker
[![Build](https://github.com/terror/checker/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/terror/checker/actions/workflows/build.yaml)
[![crates.io](https://shields.io/crates/v/checker.svg)](https://crates.io/crates/checker)`checker` is a simple [crates.io](https://crates.io/) crate name availability checker,
it lets you easily check multiple crate names for availability and activity data.![Screen Shot 2021-08-27 at 12 15 17 PM](https://user-images.githubusercontent.com/31192478/131159089-826dcbaa-6bd7-4604-8a4c-3f2ea1ceeeb9.png)
## Installation
Simply use cargo to install the binary
```bash
$ cargo install checker
```## Usage
You can use checker as a command line utility or a library.
### CLI
```
checker 0.0.3
a crates.io crate name availability checkerUSAGE:
checker [OPTIONS]FLAGS:
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-c, --check ... Check crate name availability
-o, --output Output file
```### Library
Example:
```rust
use checker::{check, Package, Status};let result: Package = check("t").unwrap();
assert_eq!(result.name, "t");
assert_eq!(result.is_taken(), true);
assert_eq!(result.is_inactive().unwrap(), true);assert!(result.days_since_last_updated().unwrap() >= 1825);
assert!(result.data.is_some());
assert!(result.owners.is_some());
```