mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
29 lines
989 B
TOML
29 lines
989 B
TOML
[package]
|
|
name = "wasmer-emscripten-tests"
|
|
version = "0.5.7"
|
|
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]
|
|
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 }
|
|
|
|
[dev-dependencies]
|
|
wabt = { git = "https://github.com/wasmerio/wabt-rs.git", rev = "17188863021f0ed7721a1969da510efbc17615f2" }
|
|
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.7"}
|
|
|
|
[build-dependencies]
|
|
glob = "0.2.11"
|
|
|
|
[features]
|
|
clif = []
|
|
llvm = ["wasmer-llvm-backend"]
|
|
singlepass = ["wasmer-singlepass-backend"]
|