From af3fcaedaf6952dfc75c1df25832f5d970d4565d Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 26 Feb 2023 08:02:24 +0100 Subject: [PATCH] Sys. Add dependency on regular expression library Also, in *Makefile* restructure test command. Also, bump version, prepare for next release. --- Cargo.toml | 3 ++- Makefile | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8ef1f71..1e43c81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "ranknauto" -version = "0.1.0" +version = "0.4.0" authors = ["Gustav Eek "] license = "GPL-3.0-or-later" description = "Rank N' Auto, automatic normalized ranking" @@ -18,3 +18,4 @@ edition = "2018" [dependencies] clap = { version = "4.1.4", features = ["derive"] } statrs = "0.15" +regex = "1" diff --git a/Makefile b/Makefile index 377cfb7..3823045 100644 --- a/Makefile +++ b/Makefile @@ -32,10 +32,12 @@ uninstall: # Test -test: reuse - cargo build +test: cargo check + cargo build + cargo test cargo doc + make reuse reuse: ! which reuse > /dev/null || reuse lint | grep Congrat || reuse lint -- 2.39.2