Bump Wasmtime to 0.39.0 (#4225)

Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
This commit is contained in:
wasmtime-publish
2022-06-06 09:12:47 -05:00
committed by GitHub
parent 0b0d49fff9
commit 55946704cb
44 changed files with 194 additions and 184 deletions

View File

@@ -15,19 +15,19 @@ path = "src/clif-util.rs"
[dependencies]
cfg-if = "1.0"
cranelift-codegen = { path = "codegen", version = "0.85.0" }
cranelift-entity = { path = "entity", version = "0.85.0" }
cranelift-interpreter = { path = "interpreter", version = "0.85.0" }
cranelift-reader = { path = "reader", version = "0.85.0" }
cranelift-frontend = { path = "frontend", version = "0.85.0" }
cranelift-wasm = { path = "wasm", version = "0.85.0", optional = true }
cranelift-native = { path = "native", version = "0.85.0" }
cranelift-codegen = { path = "codegen", version = "0.86.0" }
cranelift-entity = { path = "entity", version = "0.86.0" }
cranelift-interpreter = { path = "interpreter", version = "0.86.0" }
cranelift-reader = { path = "reader", version = "0.86.0" }
cranelift-frontend = { path = "frontend", version = "0.86.0" }
cranelift-wasm = { path = "wasm", version = "0.86.0", optional = true }
cranelift-native = { path = "native", version = "0.86.0" }
cranelift-filetests = { path = "filetests", version = "0.73.0" }
cranelift-module = { path = "module", version = "0.85.0" }
cranelift-object = { path = "object", version = "0.85.0" }
cranelift-jit = { path = "jit", version = "0.85.0" }
cranelift-preopt = { path = "preopt", version = "0.85.0" }
cranelift = { path = "umbrella", version = "0.85.0" }
cranelift-module = { path = "module", version = "0.86.0" }
cranelift-object = { path = "object", version = "0.86.0" }
cranelift-jit = { path = "jit", version = "0.86.0" }
cranelift-preopt = { path = "preopt", version = "0.86.0" }
cranelift = { path = "umbrella", version = "0.86.0" }
filecheck = "0.5.0"
log = "0.4.8"
termcolor = "1.1.2"

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-bforest"
version = "0.85.0"
version = "0.86.0"
description = "A forest of B+-trees"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-bforest"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
edition = "2021"
[dependencies]
cranelift-entity = { path = "../entity", version = "0.85.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.86.0", default-features = false }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen"
version = "0.85.0"
version = "0.86.0"
description = "Low-level code generator library"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-codegen"
@@ -13,9 +13,9 @@ build = "build.rs"
edition = "2021"
[dependencies]
cranelift-codegen-shared = { path = "./shared", version = "0.85.0" }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift-bforest = { path = "../bforest", version = "0.85.0" }
cranelift-codegen-shared = { path = "./shared", version = "0.86.0" }
cranelift-entity = { path = "../entity", version = "0.86.0" }
cranelift-bforest = { path = "../bforest", version = "0.86.0" }
hashbrown = { version = "0.11", optional = true }
target-lexicon = "0.12"
log = { version = "0.4.6", default-features = false }
@@ -34,8 +34,8 @@ souper-ir = { version = "2.1.0", optional = true }
criterion = "0.3"
[build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.85.0" }
cranelift-isle = { path = "../isle/isle", version = "=0.85.0" }
cranelift-codegen-meta = { path = "meta", version = "0.86.0" }
cranelift-isle = { path = "../isle/isle", version = "=0.86.0" }
miette = { version = "4.7.0", features = ["fancy"], optional = true }
[features]

View File

@@ -1,7 +1,7 @@
[package]
name = "cranelift-codegen-meta"
authors = ["The Cranelift Project Developers"]
version = "0.85.0"
version = "0.86.0"
description = "Metaprogram for cranelift-codegen code generator library"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -13,7 +13,7 @@ edition = "2021"
# rustdoc-args = [ "--document-private-items" ]
[dependencies]
cranelift-codegen-shared = { path = "../shared", version = "0.85.0" }
cranelift-codegen-shared = { path = "../shared", version = "0.86.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen-shared"
version = "0.85.0"
version = "0.86.0"
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-entity"
version = "0.85.0"
version = "0.86.0"
description = "Data structures using entity references as mapping keys"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-entity"

View File

@@ -10,12 +10,12 @@ publish = false
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", features = ["testing_hooks"] }
cranelift-frontend = { path = "../frontend", version = "0.85.0" }
cranelift-interpreter = { path = "../interpreter", version = "0.85.0" }
cranelift-native = { path = "../native", version = "0.85.0" }
cranelift-reader = { path = "../reader", version = "0.85.0" }
cranelift-preopt = { path = "../preopt", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0", features = ["testing_hooks"] }
cranelift-frontend = { path = "../frontend", version = "0.86.0" }
cranelift-interpreter = { path = "../interpreter", version = "0.86.0" }
cranelift-native = { path = "../native", version = "0.86.0" }
cranelift-reader = { path = "../reader", version = "0.86.0" }
cranelift-preopt = { path = "../preopt", version = "0.86.0" }
file-per-thread-logger = "0.1.2"
filecheck = "0.5.0"
gimli = { version = "0.26.0", default-features = false, features = ["read"] }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-frontend"
version = "0.85.0"
version = "0.86.0"
description = "Cranelift IR builder helper"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-frontend"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
target-lexicon = "0.12"
log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.11", optional = true }

View File

@@ -11,7 +11,7 @@ publish = false
[dependencies]
cranelift = { path = "../umbrella", version = "0.85.0" }
cranelift = { path = "../umbrella", version = "0.86.0" }
anyhow = "1.0.19"
arbitrary = "1.0.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-interpreter"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Interpret Cranelift IR"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,15 +11,15 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0" }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0" }
cranelift-entity = { path = "../entity", version = "0.86.0" }
log = { version = "0.4.8", default-features = false }
smallvec = "1.6.1"
thiserror = "1.0.15"
[dev-dependencies]
cranelift-frontend = { path = "../frontend", version = "0.85.0" }
cranelift-reader = { path = "../reader", version = "0.85.0" }
cranelift-frontend = { path = "../frontend", version = "0.86.0" }
cranelift-reader = { path = "../reader", version = "0.86.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -6,7 +6,7 @@ license = "Apache-2.0 WITH LLVM-exception"
name = "cranelift-isle"
readme = "../README.md"
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle"
version = "0.85.0"
version = "0.86.0"
[dependencies]
log = { version = "0.4", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-jit"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "A JIT library backed by Cranelift"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,10 +10,10 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-module = { path = "../module", version = "0.85.0" }
cranelift-native = { path = "../native", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false, features = ["std"] }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift-module = { path = "../module", version = "0.86.0" }
cranelift-native = { path = "../native", version = "0.86.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false, features = ["std"] }
cranelift-entity = { path = "../entity", version = "0.86.0" }
anyhow = "1.0"
region = "2.2.0"
libc = { version = "0.2.42" }
@@ -29,9 +29,9 @@ selinux-fix = ['memmap2']
default = []
[dev-dependencies]
cranelift = { path = "../umbrella", version = "0.85.0" }
cranelift-frontend = { path = "../frontend", version = "0.85.0" }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift = { path = "../umbrella", version = "0.86.0" }
cranelift-frontend = { path = "../frontend", version = "0.86.0" }
cranelift-entity = { path = "../entity", version = "0.86.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-module"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Support for linking functions and data with Cranelift"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
hashbrown = { version = "0.11", optional = true }
anyhow = "1.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-native"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Support for targeting the host with Cranelift"
documentation = "https://docs.rs/cranelift-native"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
target-lexicon = "0.12"
[target.'cfg(target_arch = "s390x")'.dependencies]

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-object"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with `object`"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,16 +10,16 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-module = { path = "../module", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false, features = ["std"] }
cranelift-module = { path = "../module", version = "0.86.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false, features = ["std"] }
object = { version = "0.28.0", default-features = false, features = ["write"] }
target-lexicon = "0.12"
anyhow = "1.0"
log = { version = "0.4.6", default-features = false }
[dev-dependencies]
cranelift-frontend = { path = "../frontend", version = "0.85.0" }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift-frontend = { path = "../frontend", version = "0.86.0" }
cranelift-entity = { path = "../entity", version = "0.86.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-preopt"
version = "0.85.0"
version = "0.86.0"
description = "Support for optimizations in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-preopt"
@@ -12,7 +12,7 @@ keywords = ["optimize", "compile", "compiler", "jit"]
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
# This is commented out because it doesn't build on Rust 1.25.0, which
# cranelift currently supports.
# rustc_apfloat = { version = "0.1.2", default-features = false }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-reader"
version = "0.85.0"
version = "0.86.0"
description = "Cranelift textual IR reader"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-reader"
@@ -10,7 +10,7 @@ readme = "README.md"
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0" }
smallvec = "1.6.1"
target-lexicon = "0.12"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-serde"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Serializer/Deserializer for Cranelift IR"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -16,8 +16,8 @@ path = "src/clif-json.rs"
[dependencies]
clap = { version = "3.1.12", features = ["derive"] }
serde_json = "1.0.26"
cranelift-codegen = { path = "../codegen", version = "0.85.0", features = ["enable-serde"] }
cranelift-reader = { path = "../reader", version = "0.85.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0", features = ["enable-serde"] }
cranelift-reader = { path = "../reader", version = "0.86.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift"
version = "0.85.0"
version = "0.86.0"
description = "Umbrella for commonly-used cranelift crates"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift"
@@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
edition = "2021"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-frontend = { path = "../frontend", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
cranelift-frontend = { path = "../frontend", version = "0.86.0", default-features = false }
[features]
default = ["std"]

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-wasm"
version = "0.85.0"
version = "0.86.0"
authors = ["The Cranelift Project Developers"]
description = "Translator from WebAssembly to Cranelift IR"
documentation = "https://docs.rs/cranelift-wasm"
@@ -13,10 +13,10 @@ edition = "2021"
[dependencies]
wasmparser = { version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.85.0" }
cranelift-frontend = { path = "../frontend", version = "0.85.0", default-features = false }
wasmtime-types = { path = "../../crates/types", version = "0.38.0" }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.86.0" }
cranelift-frontend = { path = "../frontend", version = "0.86.0", default-features = false }
wasmtime-types = { path = "../../crates/types", version = "0.39.0" }
hashbrown = { version = "0.11", optional = true }
itertools = "0.10.0"
log = { version = "0.4.6", default-features = false }
@@ -26,7 +26,7 @@ smallvec = "1.6.1"
[dev-dependencies]
wat = "1.0.37"
target-lexicon = "0.12"
cranelift-codegen = { path = "../codegen", version = "0.85.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.86.0", default-features = false }
[features]
default = ["std"]