wasmer/lib/runtime-core-tests/Cargo.toml
2019-11-22 11:18:06 -08:00

22 lines
791 B
TOML

[package]
name = "wasmer-runtime-core-tests"
version = "0.11.0"
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"
wasmer-runtime-core = { path = "../runtime-core", version = "0.11.0" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.11.0", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.11.0", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.11.0", optional = true }
[features]
default = ["backend-cranelift"]
backend-cranelift = ["wasmer-clif-backend"]
backend-singlepass = ["wasmer-singlepass-backend"]
backend-llvm = ["wasmer-llvm-backend"]