add some instructions and bump version

This commit is contained in:
Ward Wouts 2024-11-20 13:34:56 +01:00
parent 414294ac68
commit b00b5e9352
2 changed files with 12 additions and 1 deletions

View file

@ -1,8 +1,11 @@
[package] [package]
name = "mvw" name = "mvw"
version = "0.1.0" version = "0.1.3"
edition = "2021" edition = "2021"
[profile.release]
lto = "thin"
[dependencies] [dependencies]
tempfile = "3.14.0" tempfile = "3.14.0"
dialoguer = "0.11.0" dialoguer = "0.11.0"

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# mvw
`mvw` is a reimplementation of my old `mvwrap` Perl script. The goal is to be much faster and not need Perl anymore.
Building can be done with:
```
$ cargo build --release
```