Temporarily disable panic="abort".
authorBernie Innocenti <bernie@codewiz.org>
Fri, 7 Jul 2017 15:15:28 +0000 (11:15 -0400)
committerBernie Innocenti <bernie@codewiz.org>
Fri, 7 Jul 2017 15:15:28 +0000 (11:15 -0400)
This is a workaround for:

  error: the crate `bitflags` is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind`

Cargo.toml

index 4518ff1c96b8c51608d3f73d15a82bf584a603c8..0430f5df016533dfb897efa4bc9f8152735e7794 100644 (file)
@@ -6,7 +6,7 @@ license = "GPL-3.0+"
 
 [profile.release]
 lto = true
-panic = "abort"
+panic = "unwind"
 opt-level = 3
 
 [dependencies]