wasmer/lib/runtime-c-api/Cargo.toml

31 lines
609 B
TOML
Raw Normal View History

2019-02-01 05:51:34 +00:00
[package]
name = "wasmer-runtime-c-api"
2019-05-16 21:39:13 +00:00
version = "0.4.2"
description = "Wasmer C API library"
2019-02-01 05:51:34 +00:00
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"]
2019-02-01 05:51:34 +00:00
[dependencies]
2019-02-02 06:26:10 +00:00
libc = "0.2"
2019-02-01 05:51:34 +00:00
[dependencies.wasmer-runtime]
path = "../runtime"
2019-05-16 21:39:13 +00:00
version = "0.4.2"
[dependencies.wasmer-runtime-core]
path = "../runtime-core"
2019-05-16 21:39:13 +00:00
version = "0.4.2"
[features]
debug = ["wasmer-runtime/debug"]
llvm = ["wasmer-runtime/llvm"]
[build-dependencies]
2019-04-12 19:19:46 +00:00
cbindgen = "0.8"