diff --git a/Cargo.toml b/Cargo.toml index 2859dac..f3e595b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "mvw" -version = "0.1.0" +version = "0.1.3" edition = "2021" +[profile.release] +lto = "thin" + [dependencies] tempfile = "3.14.0" dialoguer = "0.11.0" diff --git a/README.md b/README.md new file mode 100644 index 0000000..7668327 --- /dev/null +++ b/README.md @@ -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 +```