From 58887287fda1d0d076409a2e5f0f61844c9ee255 Mon Sep 17 00:00:00 2001 From: Sascha Bacardit Date: Wed, 9 Nov 2022 10:28:39 +0100 Subject: [PATCH] Update Cargo.toml to output static libs. - Enable static linking, which Android and iOS builds prefer. - See PEMA-103. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6618e29..c1afaf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ version = "0.25" features = ["bundled", "collation", "blob"] [lib] -crate-type = ["cdylib"] +crate-type = ["lib", "cdylib", "staticlib"] [features] default = [ -- GitLab