From 377d3b0f56a82cc2167f5d00d127f161a87f3d2a Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 21 Feb 2024 07:17:01 +0000 Subject: [PATCH] Enable (minimal) optimization in tests As of the next commit, our tests now have to do in-crate crypto, so even minimal optimization provide a huge speedup. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7f8d352..9a762de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,9 @@ rand = { version = "0.8", default-features = false, features = ["getrandom"] } tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros", "net", "rt-multi-thread"] } minreq = { version = "2.0" } +[profile.dev] +opt-level = 1 + [lib] name = "dnssec_prover" path = "src/lib.rs" -- 2.39.5