From 9ee148596058d84bd599ba082809dc1d11fbf6d4 Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 3 May 2024 12:06:49 -0400 Subject: [PATCH] enable overflow-checks for dev/debug profile Signed-off-by: strawberry --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 291a241a..bb17f727 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -459,9 +459,11 @@ systemd-units = { unit-name = "conduwuit" } [profile.dev] +#debug = 0 lto = 'off' codegen-units = 512 incremental = true +overflow-checks = true #panic = "abort" # seems to speed up continuous debug compilations