From 307cd52178ac999928229f03adf6289ba88b890d Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sat, 23 Sep 2023 16:06:52 +0200 Subject: [PATCH] opt-level=1 in dev This speeds up the testsuite from 1.6s->1.2s --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0161590..5aead06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,9 @@ license = "MIT OR Apache-2.0" [profile.release] lto = "thin" +[profile.dev] +opt-level = 1 + [dependencies] anyhow = "1.0.65" clap = { version = "4.0.29", features = ["derive"] }