Bump Wasmtime to 9.0.0 (#6143)
Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-bforest"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "A forest of B+-trees"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-bforest"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-codegen"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "Low-level code generator library"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-codegen"
|
||||
@@ -16,7 +16,7 @@ edition.workspace = true
|
||||
anyhow = { workspace = true, optional = true }
|
||||
bumpalo = "3"
|
||||
capstone = { workspace = true, optional = true }
|
||||
cranelift-codegen-shared = { path = "./shared", version = "0.95.0" }
|
||||
cranelift-codegen-shared = { path = "./shared", version = "0.96.0" }
|
||||
cranelift-entity = { workspace = true }
|
||||
cranelift-bforest = { workspace = true }
|
||||
hashbrown = { workspace = true, features = ["raw"] }
|
||||
@@ -39,8 +39,8 @@ criterion = { version = "0.4.0", features = ["html_reports"] }
|
||||
similar = "2.1.0"
|
||||
|
||||
[build-dependencies]
|
||||
cranelift-codegen-meta = { path = "meta", version = "0.95.0" }
|
||||
cranelift-isle = { path = "../isle/isle", version = "=0.95.0" }
|
||||
cranelift-codegen-meta = { path = "meta", version = "0.96.0" }
|
||||
cranelift-isle = { path = "../isle/isle", version = "=0.96.0" }
|
||||
|
||||
[features]
|
||||
default = ["std", "unwind", "trace-log"]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "cranelift-codegen-meta"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
version = "0.95.0"
|
||||
version = "0.96.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.workspace = true
|
||||
# rustdoc-args = [ "--document-private-items" ]
|
||||
|
||||
[dependencies]
|
||||
cranelift-codegen-shared = { path = "../shared", version = "0.95.0" }
|
||||
cranelift-codegen-shared = { path = "../shared", version = "0.96.0" }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-codegen-shared"
|
||||
version = "0.95.0"
|
||||
version = "0.96.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"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-entity"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "Data structures using entity references as mapping keys"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-entity"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-frontend"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "Cranelift IR builder helper"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-frontend"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-interpreter"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Interpret Cranelift IR"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
|
||||
@@ -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.95.0"
|
||||
version = "0.96.0"
|
||||
|
||||
[dependencies]
|
||||
codespan-reporting = { version = "0.11.1", optional = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-jit"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "A JIT library backed by Cranelift"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-module"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Support for linking functions and data with Cranelift"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-native"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Support for targeting the host with Cranelift"
|
||||
documentation = "https://docs.rs/cranelift-native"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-object"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Emit Cranelift output to native object files with `object`"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift-reader"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "Cranelift textual IR reader"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift-reader"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-serde"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Serializer/Deserializer for Cranelift IR"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
description = "Umbrella for commonly-used cranelift crates"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
documentation = "https://docs.rs/cranelift"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cranelift-wasm"
|
||||
version = "0.95.0"
|
||||
version = "0.96.0"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
description = "Translator from WebAssembly to Cranelift IR"
|
||||
documentation = "https://docs.rs/cranelift-wasm"
|
||||
|
||||
Reference in New Issue
Block a user