From b00b5e93528cc09dc0f10ab97418560d798fad26 Mon Sep 17 00:00:00 2001 From: Ward Wouts Date: Wed, 20 Nov 2024 13:34:56 +0100 Subject: [PATCH] add some instructions and bump version --- Cargo.toml | 5 ++++- README.md | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 README.md 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 +```