wasmer/lib/wasi-tests/Cargo.toml

30 lines
884 B
TOML
Raw Normal View History

2019-07-09 18:58:03 +00:00
[package]
name = "wasmer-wasi-tests"
2019-07-31 17:28:45 +00:00
version = "0.6.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-07-31 17:28:45 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
wasmer-wasi = { path = "../wasi", version = "0.6.0" }
2019-07-09 18:58:03 +00:00
# hack to get tests to work
2019-07-31 17:28:45 +00:00
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.6.0", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.6.0", optional = true }
2019-07-09 18:58:03 +00:00
[build-dependencies]
2019-08-01 06:21:56 +00:00
glob = "0.3.0"
2019-07-09 18:58:03 +00:00
[dev-dependencies]
2019-07-31 17:28:45 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.6.0" }
wasmer-dev-utils = { path = "../dev-utils", version = "0.6.0"}
2019-07-09 18:58:03 +00:00
[features]
clif = []
singlepass = ["wasmer-singlepass-backend"]
llvm = ["wasmer-llvm-backend"]