From 7a7b364d785dec2064563d2d97942e4039fe8a69 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Raynaud Date: Wed, 23 Nov 2022 11:02:38 +0100 Subject: [PATCH] Add multiple build types for 'mithril-core' Add .so and .a compilations artifacts for the library. --- mithril-core/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mithril-core/Cargo.toml b/mithril-core/Cargo.toml index 764702f114a..6e0f1fe10e3 100644 --- a/mithril-core/Cargo.toml +++ b/mithril-core/Cargo.toml @@ -8,6 +8,9 @@ homepage = { workspace = true } license = { workspace = true } repository = { workspace = true } +[lib] +crate-type = ["lib", "cdylib", "staticlib"] + [dependencies] blake2 = "0.10.4" blst = { version = "0.3.10" }