You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to reduce my application's binary size, which depends on this library. I am unable to use panic = "abort in my release profile because the library declares:
crate-type = ["staticlib", "dylib", "rlib"]
The compilation error:
error: the linked panic runtime `panic_unwind` is not compiled with this crate's panic strategy `abort`
error: could not compile `sev` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
If I clone and remove the mentioned configuration, I can compile it.
I would like to know why the crate has this configuration and whether it could be removed or optionally disabled. My application is not using unwinding and it would save 500kb (9%)
The text was updated successfully, but these errors were encountered:
Hello,
I was trying to reduce my application's binary size, which depends on this library. I am unable to use
panic = "abort
in my release profile because the library declares:The compilation error:
If I clone and remove the mentioned configuration, I can compile it.
I would like to know why the crate has this configuration and whether it could be removed or optionally disabled. My application is not using unwinding and it would save 500kb (9%)
The text was updated successfully, but these errors were encountered: