Allow unwinding_dyn to be built as staticlib

This commit is contained in:
Gary Guo 2023-07-29 15:02:45 +01:00
parent 5c96fa7042
commit 29d292637b
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,7 @@ authors = ["Gary Guo <gary@garyguo.net>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
crate-type = ["cdylib", "staticlib"]
[dependencies]
unwinding = { path = "../", features = ["system-alloc", "personality-dummy", "panic-handler-dummy"] }

View File

@ -1,5 +1,4 @@
#![no_std]
#![feature(default_alloc_error_handler)]
#![warn(rust_2018_idioms)]
#![warn(unsafe_op_in_unsafe_fn)]