From 434a2856250abb0cfc0e3d7d42047f0871d637bf Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Sat, 30 Nov 2019 11:29:30 -0500 Subject: [PATCH] Enable optimization in debug builds; it's basically unusable without --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a7a26a2..fa14faf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,9 @@ version = "0.19" features = ["arbitrary"] +[profile.dev] +opt-level = 3 + [profile.release] opt-level = 3 lto = true