From 28cd0c19e92dbf5a1c8ec0f13cf5aaca4b7473b9 Mon Sep 17 00:00:00 2001 From: Brandon Lau Date: Thu, 26 May 2022 12:01:45 -0700 Subject: [PATCH] fix(crypto-ffi): make crypto-ffi generate a static library for iOS clients --- crates/matrix-sdk-crypto-ffi/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-crypto-ffi/Cargo.toml b/crates/matrix-sdk-crypto-ffi/Cargo.toml index 70c23f35c..b18573963 100644 --- a/crates/matrix-sdk-crypto-ffi/Cargo.toml +++ b/crates/matrix-sdk-crypto-ffi/Cargo.toml @@ -10,8 +10,8 @@ license = "Apache-2.0" publish = false [lib] -crate-type = ["cdylib", "lib"] -name = "matrix_crypto" +crate-type = ["cdylib", "staticlib"] +name = "matrix_crypto_ffi" [dependencies] anyhow = "1.0.57"