Merge remote-tracking branch 'origin/master' into feature/polymorphic-v2

This commit is contained in:
losfair
2020-02-26 01:45:18 +08:00
25 changed files with 103 additions and 109 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer-runtime-core-tests"
version = "0.14.0"
version = "0.14.1"
description = "Tests for the Wasmer runtime core crate"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@ -9,10 +9,10 @@ publish = false
[dependencies]
wabt = "0.9.1"
wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true }
wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"], optional = true }
[features]
default = ["backend-cranelift"]