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
This commit is contained in:
Mark McCaskey
2020-09-24 12:00:58 -07:00
parent dbaab62bef
commit c29a259679

View File

@@ -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 }