From c3d16e0021a1c30d4c799b8095e4b22a9d4037f7 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 25 Mar 2023 18:49:03 +0100 Subject: [PATCH] Disable unwinding --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index b6f8ccd1..7c8609e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] + +[profile.dev] +panic = "abort" + +[profile.release] +panic = "abort"