Wasmtime 0.17.0 and Cranelift 0.64.0. (#1805)

This commit is contained in:
Dan Gohman
2020-06-02 18:51:59 -07:00
committed by GitHub
parent 15c68f2cc1
commit a76639c6fb
61 changed files with 1261 additions and 348 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "test-programs"
version = "0.16.0"
version = "0.17.0"
authors = ["The Wasmtime Project Developers"]
readme = "README.md"
edition = "2018"
@@ -10,9 +10,9 @@ publish = false
cfg-if = "0.1.9"
[dev-dependencies]
wasi-common = { path = "../wasi-common", version = "0.16.0" }
wasmtime-wasi = { path = "../wasi", version = "0.16.0" }
wasmtime = { path = "../wasmtime", version = "0.16.0" }
wasi-common = { path = "../wasi-common", version = "0.17.0" }
wasmtime-wasi = { path = "../wasi", version = "0.17.0" }
wasmtime = { path = "../wasmtime", version = "0.17.0" }
target-lexicon = "0.10.0"
pretty_env_logger = "0.4.0"
tempfile = "3.1.0"

View File

@@ -2,7 +2,7 @@
# It is not intended for manual editing.
[[package]]
name = "libc"
version = "0.2.69"
version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
@@ -17,14 +17,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "wasi-tests"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)",
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[metadata]
"checksum libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)" = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
"checksum libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)" = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
"checksum more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"
"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"

View File

@@ -1,6 +1,6 @@
[package]
name = "wasi-tests"
version = "0.16.0"
version = "0.17.0"
authors = ["The Wasmtime Project Developers"]
readme = "README.md"
edition = "2018"