2019-01-29 16:58:16 -06:00
|
|
|
[package]
|
|
|
|
name = "wasmer-spectests"
|
2019-07-16 13:12:21 -07:00
|
|
|
version = "0.5.6"
|
2019-01-29 16:58:16 -06: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-16 13:12:21 -07:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.6" }
|
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.6" }
|
|
|
|
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.6", optional = true }
|
|
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.6", optional = true }
|
2019-01-29 16:58:16 -06:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-07-19 15:41:42 -07:00
|
|
|
wabt = { git = "https://github.com/wasmerio/wabt-rs.git", rev = "17188863021f0ed7721a1969da510efbc17615f2" }
|
2019-01-29 16:58:16 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-19 15:41:42 -07:00
|
|
|
wabt = { git = "https://github.com/wasmerio/wabt-rs.git", rev = "17188863021f0ed7721a1969da510efbc17615f2" }
|
2019-01-29 16:58:16 -06:00
|
|
|
|
|
|
|
[features]
|
2019-02-19 15:36:22 -08:00
|
|
|
default = ["fast-tests"]
|
2019-03-06 00:15:07 -06:00
|
|
|
fast-tests = []
|
|
|
|
clif = []
|
2019-03-11 09:57:06 -07:00
|
|
|
llvm = ["wasmer-llvm-backend"]
|
2019-04-11 12:44:03 -07:00
|
|
|
singlepass = ["wasmer-singlepass-backend"]
|