Bump Wasmtime to 2.0.0 (#4874)

This commit replaces #4869 and represents the actual version bump that
should have happened had I remembered to bump the in-tree version of
Wasmtime to 1.0.0 prior to the branch-cut date. Alas!
This commit is contained in:
Alex Crichton
2022-09-06 13:49:56 -05:00
committed by GitHub
parent a0e4bb0190
commit 65930640f8
47 changed files with 203 additions and 200 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmtime-environ"
version = "0.41.0"
version = "2.0.0"
authors = ["The Wasmtime Project Developers"]
description = "Standalone environment support for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
@@ -12,8 +12,8 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
cranelift-entity = { path = "../../cranelift/entity", version = "0.88.0" }
wasmtime-types = { path = "../types", version = "0.41.0" }
cranelift-entity = { path = "../../cranelift/entity", version = "0.89.0" }
wasmtime-types = { path = "../types", version = "2.0.0" }
wasmparser = "0.89.0"
indexmap = { version = "1.0.2", features = ["serde-1"] }
thiserror = "1.0.4"
@@ -24,7 +24,7 @@ object = { version = "0.29.0", default-features = false, features = ['read_core'
target-lexicon = "0.12"
wasm-encoder = { version = "0.16.0", optional = true }
wasmprinter = { version = "0.2.39", optional = true }
wasmtime-component-util = { path = "../component-util", version = "=0.41.0", optional = true }
wasmtime-component-util = { path = "../component-util", version = "=2.0.0", optional = true }
[dev-dependencies]
atty = "0.2.14"