2019-10-30 12:28:01 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-core-tests"
|
2019-11-12 00:21:46 +00:00
|
|
|
version = "0.10.1"
|
2019-10-30 12:28:01 +00:00
|
|
|
description = "Tests for the Wasmer runtime core crate"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
wabt = "0.9.1"
|
2019-11-12 00:21:46 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.1" }
|
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.10.1", optional = true }
|
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.1", optional = true }
|
|
|
|
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.10.1", optional = true }
|
2019-10-30 12:28:01 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["backend-cranelift"]
|
|
|
|
backend-cranelift = ["wasmer-clif-backend"]
|
|
|
|
backend-singlepass = ["wasmer-singlepass-backend"]
|
2019-11-11 20:13:53 +00:00
|
|
|
backend-llvm = ["wasmer-llvm-backend"]
|