wasmer/lib/spectests/Cargo.toml

29 lines
818 B
TOML
Raw Permalink Normal View History

2019-01-29 22:58:16 +00:00
[package]
name = "wasmer-spectests"
2019-07-31 17:28:45 +00:00
version = "0.6.0"
2019-01-29 22:58:16 +00:00
description = "Wasmer spectests library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
edition = "2018"
build = "build/mod.rs"
[dependencies]
2019-07-31 17:28:45 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.6.0" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.6.0", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.6.0", optional = true }
2019-01-29 22:58:16 +00:00
[build-dependencies]
2019-07-24 17:03:08 +00:00
wabt = "0.9.0"
2019-01-29 22:58:16 +00:00
[dev-dependencies]
2019-07-24 17:03:08 +00:00
wabt = "0.9.0"
2019-01-29 22:58:16 +00:00
[features]
2019-02-19 23:36:22 +00:00
default = ["fast-tests"]
fast-tests = []
clif = []
2019-03-11 16:57:06 +00:00
llvm = ["wasmer-llvm-backend"]
2019-04-11 19:44:03 +00:00
singlepass = ["wasmer-singlepass-backend"]