Fixes for 0.15 (#1449)

* Wasmtime 0.15.0 and Cranelift 0.62.0. (#1398)

* Bump more ad-hoc versions.

* Add build.rs to wasi-common's Cargo.toml.

* Update the env var name in more places.

* Remove a redundant echo.
This commit is contained in:
Dan Gohman
2020-04-03 13:13:37 -07:00
committed by GitHub
parent f6e3ab03a2
commit fde5ddf159
51 changed files with 232 additions and 223 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmtime-environ"
version = "0.14.0"
version = "0.15.0"
authors = ["The Wasmtime Project Developers"]
description = "Standalone environment support for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
@@ -13,11 +13,11 @@ edition = "2018"
[dependencies]
anyhow = "1.0"
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0", features = ["enable-serde"] }
cranelift-entity = { path = "../../cranelift/entity", version = "0.61.0", features = ["enable-serde"] }
cranelift-wasm = { path = "../../cranelift/wasm", version = "0.61.0", features = ["enable-serde"] }
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde"] }
cranelift-entity = { path = "../../cranelift/entity", version = "0.62.0", features = ["enable-serde"] }
cranelift-wasm = { path = "../../cranelift/wasm", version = "0.62.0", features = ["enable-serde"] }
wasmparser = "0.51.2"
lightbeam = { path = "../lightbeam", optional = true, version = "0.14.0" }
lightbeam = { path = "../lightbeam", optional = true, version = "0.15.0" }
indexmap = "1.0.2"
rayon = "1.2.1"
thiserror = "1.0.4"
@@ -44,7 +44,7 @@ tempfile = "3"
target-lexicon = { version = "0.10.0", default-features = false }
pretty_env_logger = "0.4.0"
rand = { version = "0.7.0", default-features = false, features = ["small_rng"] }
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.61.0", features = ["enable-serde", "all-arch"] }
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde", "all-arch"] }
filetime = "0.2.7"
lazy_static = "1.3.0"