From 50ed33e3fbc3e832e1d80d3690357beb591431b2 Mon Sep 17 00:00:00 2001 From: Zerthox Date: Fri, 22 Sep 2023 13:54:45 +0200 Subject: [PATCH] Switch to panic unwind --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e6fb7cb..628cabe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ repository = "https://github.com/zerthox/arcdps-buddy" [dependencies] arc_util = { git = "https://github.com/zerthox/arcdps-utils", features = ["serde", "settings", "update"] } -arcdps = { git = "https://github.com/zerthox/arcdps-bindings", features = ["log", "serde", "strum"] } +arcdps = { git = "https://github.com/zerthox/arcdps-bindings", features = ["log", "serde", "strum", "unwind"] } log = { version = "0.4.18", features = ["release_max_level_info"] } once_cell = "1.17.2" phf = { version = "0.11.2", features = ["macros"] } @@ -27,4 +27,3 @@ crate-type = ["cdylib"] [profile.release] lto = "thin" -panic = "abort" # rust currently aborts across ffi boundaries anyway