mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
31 lines
609 B
TOML
31 lines
609 B
TOML
[package]
|
|
name = "wasmer-runtime-c-api"
|
|
version = "0.4.2"
|
|
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"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
|
|
[dependencies.wasmer-runtime]
|
|
path = "../runtime"
|
|
version = "0.4.2"
|
|
|
|
[dependencies.wasmer-runtime-core]
|
|
path = "../runtime-core"
|
|
version = "0.4.2"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime/debug"]
|
|
llvm = ["wasmer-runtime/llvm"]
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.8"
|