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-cli"
version = "0.41.0"
version = "2.0.0"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
@@ -21,15 +21,15 @@ path = "src/bin/wasmtime.rs"
doc = false
[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.41.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.41.0" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.41.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.41.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.41.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.41.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.41.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.41.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.41.0", optional = true }
wasmtime = { path = "crates/wasmtime", version = "2.0.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=2.0.0" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=2.0.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=2.0.0" }
wasmtime-environ = { path = "crates/environ", version = "=2.0.0" }
wasmtime-wast = { path = "crates/wast", version = "=2.0.0" }
wasmtime-wasi = { path = "crates/wasi", version = "2.0.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "2.0.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "2.0.0", optional = true }
clap = { version = "3.2.0", features = ["color", "suggestions", "derive"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
@@ -43,7 +43,7 @@ rustix = { version = "0.35.6", features = ["mm", "param"] }
[dev-dependencies]
# depend again on wasmtime to activate its default features for tests
wasmtime = { path = "crates/wasmtime", version = "0.41.0", features = ['component-model'] }
wasmtime = { path = "crates/wasmtime", version = "2.0.0", features = ['component-model'] }
env_logger = "0.9.0"
log = "0.4.8"
filecheck = "0.5.0"
@@ -60,7 +60,7 @@ wat = "1.0.48"
once_cell = "1.9.0"
rayon = "1.5.0"
component-macro-test = { path = "crates/misc/component-macro-test" }
wasmtime-wast = { path = "crates/wast", version = "=0.41.0", features = ['component-model'] }
wasmtime-wast = { path = "crates/wast", version = "=2.0.0", features = ['component-model'] }
component-test-util = { path = "crates/misc/component-test-util" }
wasmtime-component-util = { path = "crates/component-util" }