mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
2433d365af
When test feature is enabled, turn on LLVM verifier. This was previously never enabled.
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "wasmer-wasi-tests"
|
|
version = "0.11.0"
|
|
description = "Tests for our WASI implementation"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
edition = "2018"
|
|
publish = false
|
|
build = "build/mod.rs"
|
|
|
|
[dependencies]
|
|
# We set default features to false to be able to use the singlepass backend properly
|
|
wasmer-runtime = { path = "../runtime", version = "0.11.0", default-features = false }
|
|
wasmer-wasi = { path = "../wasi", version = "0.11.0" }
|
|
# hack to get tests to work
|
|
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 }
|
|
|
|
[build-dependencies]
|
|
glob = "0.3"
|
|
|
|
[dev-dependencies]
|
|
wasmer-dev-utils = { path = "../dev-utils", version = "0.11.0"}
|
|
|
|
[features]
|
|
clif = ["wasmer-clif-backend", "wasmer-runtime/default-backend-cranelift"]
|
|
singlepass = ["wasmer-singlepass-backend", "wasmer-runtime/default-backend-singlepass"]
|
|
llvm = ["wasmer-llvm-backend", "wasmer-runtime/default-backend-llvm"]
|