From dbc4e7e2ad421176d5badbe503c906e10c8ec1a9 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Tue, 30 Jul 2024 15:49:14 -0700 Subject: [PATCH] Remove panic abort from Cargo.toml (it is set by the arch json). --- rust/Cargo.toml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4898b85..b27a0fb 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -5,11 +5,3 @@ members = [ ] resolver = "2" -# the profile used for `cargo build` -[profile.dev] -panic = "abort" # disable stack unwinding on panic - -# the profile used for `cargo build --release` -[profile.release] -panic = "abort" # disable stack unwinding on panic -