Merge branch 'feature/add-support-for-new-wasi' of github.com:wasmerio/wasmer into feature/add-support-for-new-wasi

This commit is contained in:
Mark McCaskey
2019-11-21 11:31:00 -08:00
53 changed files with 1043 additions and 477 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasi-tests"
version = "0.10.1"
version = "0.10.2"
description = "Tests for our WASI implementation"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,20 +9,20 @@ publish = false
build = "build/mod.rs"
[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.1" }
wasmer-runtime = { path = "../runtime", version = "0.10.1" }
wasmer-wasi = { path = "../wasi", version = "0.10.1" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.2" }
wasmer-runtime = { path = "../runtime", version = "0.10.2" }
wasmer-wasi = { path = "../wasi", version = "0.10.2" }
# hack to get tests to work
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.1", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.10.1", optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.10.2", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.10.2", optional = true }
[build-dependencies]
glob = "0.3"
[dev-dependencies]
wasmer-clif-backend = { path = "../clif-backend", version = "0.10.1" }
wasmer-dev-utils = { path = "../dev-utils", version = "0.10.1"}
wasmer-clif-backend = { path = "../clif-backend", version = "0.10.2" }
wasmer-dev-utils = { path = "../dev-utils", version = "0.10.2"}
[features]
clif = []