2019-07-09 18:58:03 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-wasi-tests"
|
2019-11-22 19:18:06 +00:00
|
|
|
version = "0.11.0"
|
2019-07-09 18:58:03 +00:00
|
|
|
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]
|
2019-11-21 21:36:44 +00:00
|
|
|
# We set default features to false to be able to use the singlepass backend properly
|
2019-11-22 19:18:06 +00:00
|
|
|
wasmer-runtime = { path = "../runtime", version = "0.11.0", default-features = false }
|
|
|
|
wasmer-wasi = { path = "../wasi", version = "0.11.0" }
|
2019-07-09 18:58:03 +00:00
|
|
|
# hack to get tests to work
|
2019-11-22 19:18:06 +00:00
|
|
|
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 }
|
2019-07-09 18:58:03 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-09-20 23:08:45 +00:00
|
|
|
glob = "0.3"
|
2019-07-09 18:58:03 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-11-22 19:18:06 +00:00
|
|
|
wasmer-dev-utils = { path = "../dev-utils", version = "0.11.0"}
|
2019-07-09 18:58:03 +00:00
|
|
|
|
|
|
|
[features]
|
2019-11-21 21:36:44 +00:00
|
|
|
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"]
|