From 57c3550ad91b173d97841af79dbf2b77a2abef4b Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Fri, 25 Aug 2023 17:55:51 +0200 Subject: [PATCH] ffi: allow to use `nostr-sdk-ffi` as lib --- bindings/nostr-sdk-ffi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/nostr-sdk-ffi/Cargo.toml b/bindings/nostr-sdk-ffi/Cargo.toml index 5dfdf52b9..fbbedd115 100644 --- a/bindings/nostr-sdk-ffi/Cargo.toml +++ b/bindings/nostr-sdk-ffi/Cargo.toml @@ -7,7 +7,7 @@ publish = false [lib] name = "nostr_sdk_ffi" -crate-type = ["cdylib", "staticlib"] +crate-type = ["lib", "cdylib", "staticlib"] [dependencies] nostr-ffi = { path = "../nostr-ffi" }