2019-07-09 19:07:05 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-emscripten-tests"
|
2019-07-23 18:20:59 +00:00
|
|
|
version = "0.5.7"
|
2019-07-09 19:07:05 +00:00
|
|
|
description = "Tests for our Emscripten implementation"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
build = "build/mod.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-07-23 18:20:59 +00:00
|
|
|
wasmer-emscripten = { path = "../emscripten", version = "0.5.7" }
|
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" }
|
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.7" }
|
|
|
|
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.7", optional = true }
|
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.7", optional = true }
|
2019-07-09 19:07:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-24 17:03:08 +00:00
|
|
|
wabt = "0.9.0"
|
2019-07-23 18:20:59 +00:00
|
|
|
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.7"}
|
2019-07-09 19:07:05 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
glob = "0.2.11"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
clif = []
|
|
|
|
llvm = ["wasmer-llvm-backend"]
|
2019-07-10 00:43:04 +00:00
|
|
|
singlepass = ["wasmer-singlepass-backend"]
|