Specify panic = abort in profiles for lightning-c-bindings
authorMatt Corallo <git@bluematt.me>
Tue, 1 Sep 2020 20:11:39 +0000 (16:11 -0400)
committerMatt Corallo <git@bluematt.me>
Fri, 11 Sep 2020 02:03:32 +0000 (22:03 -0400)
Cargo.toml

index 551ec358e15e62fc68abc93eddad8c1f30c9cc51..069e49e8b7c2c2756c9954a48305f2af498e550e 100644 (file)
@@ -10,6 +10,10 @@ members = [
 [profile.test]
 opt-level = 1
 
+[profile.dev]
+panic = "abort"
+
 [profile.release]
 opt-level = 3
 lto = true
+panic = "abort"