Crates.io | unixcli |
lib.rs | unixcli |
version | 0.1.3 |
source | src |
created_at | 2017-04-01 12:44:36.881372 |
updated_at | 2018-03-18 12:17:25.061542 |
description | Helper library for writing unix command line utilities in Rust |
homepage | https://github.com/kamadak/unixcli-rs |
repository | https://github.com/kamadak/unixcli-rs |
max_upload_size | |
id | 9296 |
size | 21,072 |
This library provides helper functions for writing unix command-line utilities.
progname Provides access to the name of the current program. err Prints messages to the standard error output.
Add a dependency entry to your Cargo.toml.
[dependencies]
unixcli = "0.1"
Add the following to your crate root.
extern crate unixcli;
Rust 1.15 or later is required to build.