wasmer/lib/spectests/Cargo.toml

28 lines
801 B
TOML
Raw Normal View History

2019-01-29 22:58:16 +00:00
[package]
name = "wasmer-spectests"
2019-02-25 21:28:37 +00:00
version = "0.2.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-02-25 21:28:37 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" }
2019-03-18 08:14:11 +00:00
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true }
wasmer-dynasm-backend = { path = "../dynasm-backend", version = "0.1.0", optional = true }
2019-01-29 22:58:16 +00:00
[build-dependencies]
wabt = "0.7.2"
[dev-dependencies]
wabt = "0.7.2"
[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-03-18 08:06:20 +00:00
dynasm = ["wasmer-dynasm-backend"]