From: Matt Corallo Date: Tue, 1 Sep 2020 20:11:39 +0000 (-0400) Subject: Specify panic = abort in profiles for lightning-c-bindings X-Git-Tag: v0.0.12~30^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=3c12b0d0af0754746ebeb4a916634fffa0a2c28c;p=rust-lightning Specify panic = abort in profiles for lightning-c-bindings --- diff --git a/Cargo.toml b/Cargo.toml index 551ec358..069e49e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,10 @@ members = [ [profile.test] opt-level = 1 +[profile.dev] +panic = "abort" + [profile.release] opt-level = 3 lto = true +panic = "abort"