Version bump and Usage added to README.md
continuous-integration/drone/push Build is passing Details

This commit is contained in:
jpk 2023-01-06 18:49:19 +01:00
parent f4b957a0b2
commit e75ea9a698
3 changed files with 19 additions and 2 deletions

2
Cargo.lock generated
View File

@ -207,7 +207,7 @@ dependencies = [
[[package]]
name = "rhd"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"clap",
"hex",

View File

@ -1,6 +1,6 @@
[package]
name = "rhd"
version = "0.1.0"
version = "0.2.0"
authors = ["JayPiKay <jpk@goatpr0n.de>"]
edition = "2018"

View File

@ -2,3 +2,20 @@
[![Build Status](https://drone.goatpr0n.farm/api/badges/jpk/rhd/status.svg)](https://drone.goatpr0n.farm/jpk/rhd)
Rust learning project.
## Usage
```shell
A simple hexdump tool
Usage: rhd [OPTIONS] [FILENAME]
Arguments:
[FILENAME] Filename to read, if left out read from stdin
Options:
-l, --length <LENGTH> Stop after <len> octets
-r, --revert Revert hexdump to binary
-h, --help Print help information
-V, --version Print version information
```