Release 3.2.0-beta.2

This commit is contained in:
ptitSeb
2023-04-05 13:25:40 +02:00
parent b20ab14e28
commit e40c6a4177
32 changed files with 348 additions and 275 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wasmer-compiler"
version = "3.2.0-beta.1"
version = "3.2.0-beta.2"
description = "Base compiler abstraction for Wasmer WebAssembly runtime"
categories = ["wasm", "no-std"]
keywords = ["wasm", "webassembly", "compiler"]
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
wasmer-types = { path = "../types", version = "=3.2.0-beta.1", default-features = false }
wasmer-object = { path = "../object", version = "=3.2.0-beta.1", optional = true }
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", default-features = false }
wasmer-object = { path = "../object", version = "=3.2.0-beta.2", optional = true }
wasmparser = { version = "0.95", optional = true, default-features = false }
enumset = "1.0.2"
hashbrown = { version = "0.11", optional = true }
@@ -32,7 +32,7 @@ leb128 = "0.2"
enum-iterator = "0.7.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.1" }
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.2" }
region = { version = "3.0" }
[target.'cfg(target_os = "windows")'.dependencies]