From 8988c775fe6becad9c276384ea317b13bd7c43a0 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Sun, 8 May 2022 17:52:52 +0200 Subject: [PATCH] Abort instead of unwinding on panic (#3259) --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a80d1ab47..95b2e6fda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,9 +8,11 @@ rust-version = "1.56" [profile.dev] debug = 0 +panic = 'abort' [profile.release] lto = true +panic = 'abort' [dependencies] deltachat_derive = { path = "./deltachat_derive" }