Skip to content

Commit

Permalink
Bump Wasmtime to 0.35.0 (#3885)
Browse files Browse the repository at this point in the history
[automatically-tag-and-release-this-commit]

Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
  • Loading branch information
wasmtime-publish and wasmtime-publish authored Mar 7, 2022
1 parent e81d4ce commit 9137b4a
Show file tree
Hide file tree
Showing 42 changed files with 180 additions and 180 deletions.
74 changes: 37 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-cli"
version = "0.34.0"
version = "0.35.0"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -21,14 +21,14 @@ path = "src/bin/wasmtime.rs"
doc = false

[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.34.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.34.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.34.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.34.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.34.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.34.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.34.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.34.0", optional = true }
wasmtime = { path = "crates/wasmtime", version = "0.35.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.35.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.35.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.35.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.35.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.35.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.35.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.35.0", optional = true }
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
Expand All @@ -46,7 +46,7 @@ rustix = "0.33.0"

[dev-dependencies]
# depend again on wasmtime to activate its default features for tests
wasmtime = { path = "crates/wasmtime", version = "0.34.0" }
wasmtime = { path = "crates/wasmtime", version = "0.35.0" }
env_logger = "0.8.1"
filecheck = "0.5.0"
more-asserts = "0.2.1"
Expand Down
24 changes: 12 additions & 12 deletions cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ path = "src/clif-util.rs"

[dependencies]
cfg-if = "1.0"
cranelift-codegen = { path = "codegen", version = "0.81.0" }
cranelift-entity = { path = "entity", version = "0.81.0" }
cranelift-interpreter = { path = "interpreter", version = "0.81.0" }
cranelift-reader = { path = "reader", version = "0.81.0" }
cranelift-frontend = { path = "frontend", version = "0.81.0" }
cranelift-wasm = { path = "wasm", version = "0.81.0", optional = true }
cranelift-native = { path = "native", version = "0.81.0" }
cranelift-codegen = { path = "codegen", version = "0.82.0" }
cranelift-entity = { path = "entity", version = "0.82.0" }
cranelift-interpreter = { path = "interpreter", version = "0.82.0" }
cranelift-reader = { path = "reader", version = "0.82.0" }
cranelift-frontend = { path = "frontend", version = "0.82.0" }
cranelift-wasm = { path = "wasm", version = "0.82.0", optional = true }
cranelift-native = { path = "native", version = "0.82.0" }
cranelift-filetests = { path = "filetests", version = "0.73.0" }
cranelift-module = { path = "module", version = "0.81.0" }
cranelift-object = { path = "object", version = "0.81.0" }
cranelift-jit = { path = "jit", version = "0.81.0" }
cranelift-preopt = { path = "preopt", version = "0.81.0" }
cranelift = { path = "umbrella", version = "0.81.0" }
cranelift-module = { path = "module", version = "0.82.0" }
cranelift-object = { path = "object", version = "0.82.0" }
cranelift-jit = { path = "jit", version = "0.82.0" }
cranelift-preopt = { path = "preopt", version = "0.82.0" }
cranelift = { path = "umbrella", version = "0.82.0" }
filecheck = "0.5.0"
log = "0.4.8"
termcolor = "1.1.2"
Expand Down
Loading

0 comments on commit 9137b4a

Please sign in to comment.