From c29a259679873578bee735d9399a31d03185a84d Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Thu, 24 Sep 2020 12:00:58 -0700 Subject: [PATCH] Add `rlib` as a crate-type for wasmer-c-api This is how `wasmer-runtime-c-api` was before and seems to fix a use case that users relied on --- lib/c-api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index bc525a831..935ef0e0c 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [lib] -crate-type = ["cdylib", "staticlib"] +crate-type = ["cdylib", "rlib", "staticlib"] [dependencies] wasmer = { version = "1.0.0-alpha3", path = "../api", default-features = false }