Sync with latest wasmtime rev

This commit syncs tests with latest wasmtime revision.
As such, it now utilises the `wasmtime-api` crate for
runtime setup.

Closes #126, #127, #128, #129.
This commit is contained in:
Jakub Konka
2019-10-22 11:34:50 +02:00
committed by Jakub Konka
parent 0d63cc2dbc
commit 63c1f71036
2 changed files with 74 additions and 31 deletions

View File

@@ -32,14 +32,12 @@ winx = { path = "winx" }
winapi = "0.3"
[dev-dependencies]
wasmtime-runtime = { git = "https://github.com/cranestation/wasmtime", rev = "cb38b48" }
wasmtime-environ = { git = "https://github.com/cranestation/wasmtime", rev = "cb38b48" }
wasmtime-jit = { git = "https://github.com/cranestation/wasmtime", rev = "cb38b48" }
wasmtime-wasi = { git = "https://github.com/cranestation/wasmtime", rev = "cb38b48" }
cranelift-codegen = "0.44.0"
cranelift-entity = "0.44.0"
cranelift-wasm = "0.44.0"
cranelift-native = "0.44.0"
wasmtime-runtime = { git = "https://github.com/cranestation/wasmtime", rev = "e37168a" }
wasmtime-environ = { git = "https://github.com/cranestation/wasmtime", rev = "e37168a" }
wasmtime-jit = { git = "https://github.com/cranestation/wasmtime", rev = "e37168a" }
wasmtime-wasi = { git = "https://github.com/cranestation/wasmtime", rev = "e37168a" }
wasmtime-api = { git = "https://github.com/cranestation/wasmtime", rev = "e37168a" }
cranelift-codegen = "0.46.1"
target-lexicon = "0.8.1"
pretty_env_logger = "0.3.0"
tempfile = "3.1.0"