mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
2433d365af
When test feature is enabled, turn on LLVM verifier. This was previously never enabled.
22 lines
812 B
TOML
22 lines
812 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", features = ["test"], optional = true }
|
|
|
|
[features]
|
|
default = ["backend-cranelift"]
|
|
backend-cranelift = ["wasmer-clif-backend"]
|
|
backend-singlepass = ["wasmer-singlepass-backend"]
|
|
backend-llvm = ["wasmer-llvm-backend"]
|