mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-26 12:41:04 +00:00
This patch removes the `WASM_EMSCRIPTEN_GENERATE_C_API_HEADERS` flag. Consequently, the C header files will be generated for each build. The `generate-c-api-headers` feature is also removed, since it becomes useless.
20 lines
493 B
TOML
20 lines
493 B
TOML
[package]
|
|
name = "wasmer-runtime-c-api"
|
|
version = "0.2.1"
|
|
description = "Wasmer C API library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime = { path = "../runtime", version = "0.2.1" }
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
|
|
libc = "0.2"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.8" |