From b1303dbcd8fcab990d398213eb33c87a803dbe87 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Wed, 26 Mar 2025 23:55:22 -0600 Subject: [PATCH] Don't build a dylib for FFI You can't link libplist dynamically if the lib itself is a dylib --- ffi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 2099caa..2c97b82 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -19,4 +19,4 @@ plist_plus = { version = "0.2.6", features = ["dynamic"] } cbindgen = "0.28.0" [lib] -crate-type = ["staticlib", "cdylib"] +crate-type = ["staticlib"]