From 4273cde4b0c267783702d49a010e0811290ca9bf Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 30 Apr 2023 13:50:00 +0200 Subject: [PATCH] The `x86_64-unknown-none` target defaults to `panic=abort` So we don't need to override the panic strategy anymore. --- Cargo.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7c8609e7..b6f8ccd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,3 @@ 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"