wasmer/lib/runtime-core-tests/Cargo.toml
Ivan Enderlin bdc1ab3412 feat(runtime-core-tests) Introduce the new wasmer-runtime-core-tests crate.
This non-publishable new crate contains a test suite for the
`wasmer-runtime-core` crate. So far, the test suite is rather small,
but it aims to be extended in a close future.
2019-10-30 13:28:01 +01:00

21 lines
777 B
TOML

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