2019-01-31 23:51:34 -06:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-c-api"
|
2019-07-05 13:35:55 -07:00
|
|
|
version = "0.5.4"
|
2019-03-06 10:39:34 +01:00
|
|
|
description = "Wasmer C API library"
|
2019-01-31 23:51:34 -06:00
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
|
|
edition = "2018"
|
|
|
|
readme = "README.md"
|
|
|
|
|
2019-03-19 11:12:19 +01:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
|
|
|
|
2019-01-31 23:51:34 -06:00
|
|
|
[dependencies]
|
2019-02-02 00:26:10 -06:00
|
|
|
libc = "0.2"
|
2019-01-31 23:51:34 -06:00
|
|
|
|
2019-03-19 11:12:19 +01:00
|
|
|
[dependencies.wasmer-runtime]
|
|
|
|
path = "../runtime"
|
2019-07-05 13:35:55 -07:00
|
|
|
version = "0.5.4"
|
2019-03-19 11:12:19 +01:00
|
|
|
|
|
|
|
[dependencies.wasmer-runtime-core]
|
|
|
|
path = "../runtime-core"
|
2019-07-05 13:35:55 -07:00
|
|
|
version = "0.5.4"
|
2019-03-19 11:12:19 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
debug = ["wasmer-runtime/debug"]
|
|
|
|
llvm = ["wasmer-runtime/llvm"]
|
2019-02-01 18:52:22 -06:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-04-12 12:19:46 -07:00
|
|
|
cbindgen = "0.8"
|