mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 19:45:29 +00:00
Bump app version
This commit is contained in:
parent
0b346eee3d
commit
6eee06a51a
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -189,7 +189,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ouch"
|
name = "ouch"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bzip2 0.4.2",
|
"bzip2 0.4.2",
|
||||||
"clap",
|
"clap",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ouch"
|
name = "ouch"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>"]
|
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
18
README.md
18
README.md
@ -13,7 +13,7 @@
|
|||||||
`ouch` infers commands from the extensions of its command-line options.
|
`ouch` infers commands from the extensions of its command-line options.
|
||||||
|
|
||||||
```
|
```
|
||||||
ouch 0.1.0
|
ouch 0.1.1
|
||||||
Vinícius R. Miguel
|
Vinícius R. Miguel
|
||||||
ouch is a unified compression & decompression utility
|
ouch is a unified compression & decompression utility
|
||||||
|
|
||||||
@ -92,7 +92,19 @@ The last dependency is a recent [Rust](https://www.rust-lang.org/) toolchain. If
|
|||||||
|
|
||||||
Once the dependency requirements are met:
|
Once the dependency requirements are met:
|
||||||
|
|
||||||
|
* Installing from [Crates.io](https://crates.io)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/vrmiguel/jacarex # Clone the repo.
|
cargo install ouch
|
||||||
cargo install --path ouch # .. and install it
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* Cloning and building
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/vrmiguel/ouch
|
||||||
|
cargo install --path ouch
|
||||||
|
# or
|
||||||
|
cd ouch && cargo run --release
|
||||||
|
```
|
||||||
|
|
||||||
|
I also recommend stripping the release binary. `ouch`'s release binary (at the time of writing) only takes up a megabyte in space when stripped.
|
||||||
|
@ -27,7 +27,7 @@ pub struct Command {
|
|||||||
|
|
||||||
pub fn clap_app<'a, 'b>() -> clap::App<'a, 'b> {
|
pub fn clap_app<'a, 'b>() -> clap::App<'a, 'b> {
|
||||||
clap::App::new("ouch")
|
clap::App::new("ouch")
|
||||||
.version("0.1.0")
|
.version("0.1.1")
|
||||||
.about("ouch is a unified compression & decompression utility")
|
.about("ouch is a unified compression & decompression utility")
|
||||||
.after_help(
|
.after_help(
|
||||||
"ouch infers what to based on the extensions of the input files and output file received.
|
"ouch infers what to based on the extensions of the input files and output file received.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user