Don't build a dylib for FFI

You can't link libplist dynamically if the lib itself is a dylib
This commit is contained in:
Jackson Coxson
2025-03-26 23:55:22 -06:00
parent fc51d8305c
commit b1303dbcd8

View File

@@ -19,4 +19,4 @@ plist_plus = { version = "0.2.6", features = ["dynamic"] }
cbindgen = "0.28.0"
[lib]
crate-type = ["staticlib", "cdylib"]
crate-type = ["staticlib"]