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

31 lines
612 B
TOML
Raw Normal View History

2019-02-01 05:51:34 +00:00
[package]
name = "wasmer-runtime-c-api"
2019-07-31 17:28:45 +00:00
version = "0.6.0"
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-08-01 06:03:52 +00:00
libc = "0.2.60"
2019-02-01 05:51:34 +00:00
[dependencies.wasmer-runtime]
path = "../runtime"
2019-07-31 17:28:45 +00:00
version = "0.6.0"
[dependencies.wasmer-runtime-core]
path = "../runtime-core"
2019-07-31 17:28:45 +00:00
version = "0.6.0"
[features]
debug = ["wasmer-runtime/debug"]
llvm = ["wasmer-runtime/llvm"]
[build-dependencies]
2019-04-12 19:19:46 +00:00
cbindgen = "0.8"