2019-01-31 23:51:34 -06:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-c-api"
|
2019-07-31 10:28:45 -07:00
|
|
|
version = "0.6.0"
|
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-07-31 23:03:52 -07:00
|
|
|
libc = "0.2.60"
|
2019-01-31 23:51:34 -06:00
|
|
|
|
2019-03-19 11:12:19 +01:00
|
|
|
[dependencies.wasmer-runtime]
|
2019-08-03 22:47:36 +03:00
|
|
|
default-features = false
|
2019-03-19 11:12:19 +01:00
|
|
|
path = "../runtime"
|
2019-07-31 10:28:45 -07:00
|
|
|
version = "0.6.0"
|
2019-03-19 11:12:19 +01:00
|
|
|
|
|
|
|
[dependencies.wasmer-runtime-core]
|
2019-08-03 22:47:36 +03:00
|
|
|
default-features = false
|
2019-03-19 11:12:19 +01:00
|
|
|
path = "../runtime-core"
|
2019-07-31 10:28:45 -07:00
|
|
|
version = "0.6.0"
|
2019-03-19 11:12:19 +01:00
|
|
|
|
|
|
|
[features]
|
2019-08-22 14:36:12 +03:00
|
|
|
default = ["cranelift-backend"]
|
2019-03-19 11:12:19 +01:00
|
|
|
debug = ["wasmer-runtime/debug"]
|
2019-08-22 14:36:12 +03:00
|
|
|
cranelift-backend = ["wasmer-runtime/cranelift", "wasmer-runtime/default-backend-cranelift"]
|
|
|
|
llvm-backend = ["wasmer-runtime/llvm"]
|
2019-08-22 16:36:01 +03:00
|
|
|
singlepass-backend = ["wasmer-runtime/singlepass", "wasmer-runtime/default-backend-singlepass"]
|
2019-02-01 18:52:22 -06:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-07-31 23:21:56 -07:00
|
|
|
cbindgen = "0.9.0"
|