2019-02-01 05:51:34 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-c-api"
|
2019-02-28 01:20:49 +00:00
|
|
|
version = "0.2.1"
|
2019-03-06 09:39:34 +00:00
|
|
|
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"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-02-28 01:20:49 +00:00
|
|
|
wasmer-runtime = { path = "../runtime", version = "0.2.1" }
|
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
|
2019-02-02 06:26:10 +00:00
|
|
|
libc = "0.2"
|
2019-02-01 05:51:34 +00:00
|
|
|
|
2019-02-02 00:52:22 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
2019-03-06 09:39:34 +00:00
|
|
|
cbindgen = "0.8"
|