mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-22 16:35:33 +00:00
Release 4.2.3
This commit is contained in:
702
Cargo.lock
generated
702
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
26
Cargo.toml
26
Cargo.toml
@ -12,20 +12,20 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer = { version = "=4.2.2", path = "lib/api", default-features = false }
|
||||
wasmer-compiler = { version = "=4.2.2", path = "lib/compiler", features = [
|
||||
wasmer = { version = "=4.2.3", path = "lib/api", default-features = false }
|
||||
wasmer-compiler = { version = "=4.2.3", path = "lib/compiler", features = [
|
||||
"compiler",
|
||||
], optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.2", path = "lib/compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.2", path = "lib/compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.2", path = "lib/compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.2", path = "lib/emscripten", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.3", path = "lib/compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.3", path = "lib/compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.3", path = "lib/compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.3", path = "lib/emscripten", optional = true }
|
||||
wasmer-wasix = { version = "0.15.0", path = "lib/wasix", optional = true }
|
||||
wasmer-wast = { version = "=4.2.2", path = "tests/lib/wast", optional = true }
|
||||
wasi-test-generator = { version = "=4.2.2", path = "tests/wasi-wast", optional = true }
|
||||
wasmer-cache = { version = "=4.2.2", path = "lib/cache", optional = true }
|
||||
wasmer-types = { version = "=4.2.2", path = "lib/types" }
|
||||
wasmer-middlewares = { version = "=4.2.2", path = "lib/middlewares", optional = true }
|
||||
wasmer-wast = { version = "=4.2.3", path = "tests/lib/wast", optional = true }
|
||||
wasi-test-generator = { version = "=4.2.3", path = "tests/wasi-wast", optional = true }
|
||||
wasmer-cache = { version = "=4.2.3", path = "lib/cache", optional = true }
|
||||
wasmer-types = { version = "=4.2.3", path = "lib/types" }
|
||||
wasmer-middlewares = { version = "=4.2.3", path = "lib/middlewares", optional = true }
|
||||
cfg-if = "1.0"
|
||||
tokio = { version = "1", features = [
|
||||
"rt",
|
||||
@ -81,7 +81,7 @@ homepage = "https://wasmer.io/"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
rust-version = "1.70"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
|
||||
[workspace.dependencies]
|
||||
webc = { version = "5.5.1", default-features = false, features = ["package"] }
|
||||
@ -95,7 +95,7 @@ glob = "0.3"
|
||||
rustc_version = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
wasmer = { version = "=4.2.2", path = "lib/api", features = [
|
||||
wasmer = { version = "=4.2.3", path = "lib/api", features = [
|
||||
"compiler",
|
||||
"singlepass",
|
||||
"sys",
|
||||
|
@ -39,15 +39,15 @@ shared-buffer = "0.1"
|
||||
# Dependencies and Development Dependencies for `sys`.
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
# - Mandatory dependencies for `sys`.
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.2" }
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.2" }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.3" }
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.3" }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.3" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
target-lexicon = { version = "0.12.2", default-features = false }
|
||||
# - Optional dependencies for `sys`.
|
||||
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.2.2", optional = true }
|
||||
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.2.2", optional = true }
|
||||
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.2.2", optional = true }
|
||||
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.2.3", optional = true }
|
||||
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.2.3", optional = true }
|
||||
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.2.3", optional = true }
|
||||
|
||||
wasm-bindgen = { version = "0.2.74", optional = true }
|
||||
js-sys = { version = "0.3.51", optional = true }
|
||||
@ -63,17 +63,17 @@ winapi = "0.3"
|
||||
wat = "1.0"
|
||||
tempfile = "3.6.0"
|
||||
anyhow = "1.0"
|
||||
macro-wasmer-universal-test = { version = "4.2.2", path = "./macro-wasmer-universal-test" }
|
||||
macro-wasmer-universal-test = { version = "4.2.3", path = "./macro-wasmer-universal-test" }
|
||||
|
||||
# Dependencies and Develoment Dependencies for `js`.
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
# - Mandatory dependencies for `js`.
|
||||
wasmer-types = { path = "../types", version = "=4.2.2", default-features = false, features = ["std"] }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3", default-features = false, features = ["std"] }
|
||||
wasm-bindgen = "0.2.74"
|
||||
wasm-bindgen-downcast = { version = "0.1.1" }
|
||||
js-sys = "0.3.51"
|
||||
#web-sys = { version = "0.3.51", features = [ "console" ] }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.2" }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.3" }
|
||||
# - Optional dependencies for `js`.
|
||||
wasmparser = { version = "0.95", default-features = false, optional = true }
|
||||
hashbrown = { version = "0.11", optional = true }
|
||||
@ -85,7 +85,7 @@ serde = { version = "1.0", features = ["derive"] }
|
||||
wat = "1.0"
|
||||
anyhow = "1.0"
|
||||
wasm-bindgen-test = "0.3.0"
|
||||
macro-wasmer-universal-test = { version = "4.2.2", path = "./macro-wasmer-universal-test" }
|
||||
macro-wasmer-universal-test = { version = "4.2.3", path = "./macro-wasmer-universal-test" }
|
||||
|
||||
# Specific to `js`.
|
||||
#
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "macro-wasmer-universal-test"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "Universal test macro for wasmer-test"
|
||||
|
@ -24,14 +24,14 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"]
|
||||
[dependencies]
|
||||
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
|
||||
# library name (see `[lib]`).
|
||||
wasmer-api = { version = "=4.2.2", path = "../api", default-features = false, package = "wasmer" }
|
||||
wasmer-compiler = { version = "=4.2.2", path = "../compiler", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.2", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.2", path = "../compiler-llvm", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.2", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.2", path = "../emscripten", optional = true }
|
||||
wasmer-middlewares = { version = "=4.2.2", path = "../middlewares", optional = true }
|
||||
wasmer-types = { version = "=4.2.2", path = "../types" }
|
||||
wasmer-api = { version = "=4.2.3", path = "../api", default-features = false, package = "wasmer" }
|
||||
wasmer-compiler = { version = "=4.2.3", path = "../compiler", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.3", path = "../compiler-llvm", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.3", path = "../emscripten", optional = true }
|
||||
wasmer-middlewares = { version = "=4.2.3", path = "../middlewares", optional = true }
|
||||
wasmer-types = { version = "=4.2.3", path = "../types" }
|
||||
wasmer-wasix = { version = "0.15.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
|
||||
webc = { version = "5.0", optional = true }
|
||||
virtual-fs = { version = "0.9.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-capi-examples-runner"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "wasmer-capi-examples-runner"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-c-api-test-runner"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "wasmer-c-api-test-runner"
|
||||
|
6
lib/cache/Cargo.toml
vendored
6
lib/cache/Cargo.toml
vendored
@ -13,7 +13,7 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false }
|
||||
hex = "0.4"
|
||||
thiserror = "1"
|
||||
blake3 = "1.0"
|
||||
@ -22,8 +22,8 @@ blake3 = "1.0"
|
||||
criterion = { version = "0.5", default-features = false }
|
||||
tempfile = "3.6.0"
|
||||
rand = "0.8.3"
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["sys", "cranelift"] }
|
||||
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.2.2" }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["sys", "cranelift"] }
|
||||
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.2.3" }
|
||||
|
||||
[features]
|
||||
default = ["filesystem"]
|
||||
|
@ -20,8 +20,8 @@ path = "src/bin/wasmer_compiler.rs"
|
||||
doc = false
|
||||
|
||||
[dependencies]
|
||||
wasmer-compiler = { version = "=4.2.2", path = "../compiler", features = ["compiler"] }
|
||||
wasmer-types = { version = "=4.2.2", path = "../types" }
|
||||
wasmer-compiler = { version = "=4.2.3", path = "../compiler", features = ["compiler"] }
|
||||
wasmer-types = { version = "=4.2.3", path = "../types" }
|
||||
is-terminal = "0.4.7"
|
||||
colored = "2.0"
|
||||
anyhow = "1.0"
|
||||
@ -36,13 +36,13 @@ log = { version = "0.4", optional = true }
|
||||
target-lexicon = { version = "0.12", features = ["std"] }
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
wasmer-compiler-singlepass = { version = "=4.2.2", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.2", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true }
|
||||
clap = { version = "4.2.7", features = ["derive", "env"] }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
wasmer-compiler-singlepass = { version = "=4.2.2", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.2", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
|
||||
# NOTE: Must use different features for clap because the "color" feature does not
|
||||
# work on wasi, due to the anstream dependency not compiling.
|
||||
clap = { version = "4.2.7", default-features = false, features = [
|
||||
|
@ -27,15 +27,15 @@ required-features = ["headless"]
|
||||
|
||||
[dependencies]
|
||||
# Repo-local dependencies.
|
||||
wasmer = { version = "=4.2.2", path = "../api", default-features = false }
|
||||
wasmer-compiler = { version = "=4.2.2", path = "../compiler", features = [
|
||||
wasmer = { version = "=4.2.3", path = "../api", default-features = false }
|
||||
wasmer-compiler = { version = "=4.2.3", path = "../compiler", features = [
|
||||
"compiler",
|
||||
], optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.2", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.2", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.2", path = "../compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.2", path = "../emscripten" }
|
||||
wasmer-vm = { version = "=4.2.2", path = "../vm", optional = true }
|
||||
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=4.2.3", path = "../compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=4.2.3", path = "../emscripten" }
|
||||
wasmer-vm = { version = "=4.2.3", path = "../vm", optional = true }
|
||||
wasmer-wasix = { version = "0.15.0", path = "../wasix", features = [
|
||||
"logging",
|
||||
"webc_runner_rt_wcgi",
|
||||
@ -45,18 +45,18 @@ wasmer-wasix = { version = "0.15.0", path = "../wasix", features = [
|
||||
wasmer-wasix-experimental-io-devices = { version = "0.15.0", path = "../wasi-experimental-io-devices", optional = true, features = [
|
||||
"link_external_libs",
|
||||
] }
|
||||
wasmer-wast = { version = "=4.2.2", path = "../../tests/lib/wast", optional = true }
|
||||
wasmer-cache = { version = "=4.2.2", path = "../cache", features = [
|
||||
wasmer-wast = { version = "=4.2.3", path = "../../tests/lib/wast", optional = true }
|
||||
wasmer-cache = { version = "=4.2.3", path = "../cache", features = [
|
||||
"blake3-pure",
|
||||
] }
|
||||
wasmer-types = { version = "=4.2.2", path = "../types", features = [
|
||||
wasmer-types = { version = "=4.2.3", path = "../types", features = [
|
||||
"enable-serde",
|
||||
] }
|
||||
wasmer-registry = { version = "5.8.0", path = "../registry", features = [
|
||||
"build-package",
|
||||
"clap",
|
||||
] }
|
||||
wasmer-object = { version = "=4.2.2", path = "../object", optional = true }
|
||||
wasmer-object = { version = "=4.2.3", path = "../object", optional = true }
|
||||
virtual-fs = { version = "0.9.0", path = "../virtual-fs", default-features = false, features = [
|
||||
"host-fs",
|
||||
] }
|
||||
|
@ -14,8 +14,8 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.2", features = ["translator", "compiler"], default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2", default-features = false, features = ["std"] }
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.3", features = ["translator", "compiler"], default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3", default-features = false, features = ["std"] }
|
||||
cranelift-entity = { version = "0.91.1", default-features = false }
|
||||
cranelift-codegen = { version = "0.91.1", default-features = false, features = ["x86", "arm64", "riscv64"] }
|
||||
cranelift-frontend = { version = "0.91.1", default-features = false }
|
||||
|
@ -14,11 +14,11 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.2", features = [
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.3", features = [
|
||||
"translator", "compiler"
|
||||
] }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.3" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
target-lexicon = { version = "0.12.2", default-features = false }
|
||||
smallvec = "1.6"
|
||||
object = { version = "0.28.3", default-features = false, features = ["read"] }
|
||||
|
@ -14,8 +14,8 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.2", features = ["translator", "compiler"], default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2", default-features = false, features = ["std"] }
|
||||
wasmer-compiler = { path = "../compiler", version = "=4.2.3", features = ["translator", "compiler"], default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3", default-features = false, features = ["std"] }
|
||||
hashbrown = { version = "0.11", optional = true }
|
||||
gimli = { version = "0.26", optional = true }
|
||||
enumset = "1.0.2"
|
||||
|
@ -13,8 +13,8 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-types = { path = "../types", version = "=4.2.2", default-features = false }
|
||||
wasmer-object = { path = "../object", version = "=4.2.2", optional = true }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3", default-features = false }
|
||||
wasmer-object = { path = "../object", version = "=4.2.3", optional = true }
|
||||
wasmparser = { version = "0.95", optional = true, default-features = false }
|
||||
enumset = "1.0.2"
|
||||
hashbrown = { version = "0.11", optional = true }
|
||||
@ -38,7 +38,7 @@ rkyv = { version = "0.7.40", features = ["indexmap", "validation", "strict"] }
|
||||
shared-buffer = "0.1"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.2" }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.3" }
|
||||
region = { version = "3.0" }
|
||||
|
||||
[target.'cfg(target_os = "windows")'.dependencies]
|
||||
|
@ -18,8 +18,8 @@ lazy_static = "1.4"
|
||||
libc = "^0.2"
|
||||
log = "0.4"
|
||||
time = { version = "0.3", features = ["std", "formatting"] }
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
getrandom = "0.2"
|
||||
|
@ -13,12 +13,12 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["compiler"] }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.2" }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["compiler"] }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.3" }
|
||||
|
||||
[dev-dependencies]
|
||||
wasmer = { path = "../api", version = "=4.2.2", features = ["compiler"] }
|
||||
wasmer = { path = "../api", version = "=4.2.3", features = ["compiler"] }
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "actively-developed" }
|
||||
|
@ -13,7 +13,7 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
object = { version = "0.28.3", default-features = false, features = ["write"] }
|
||||
thiserror = "1.0"
|
||||
|
||||
|
@ -44,7 +44,7 @@ tokio = "1.24.0"
|
||||
toml = "0.5.9"
|
||||
url = "2.3.1"
|
||||
wasmer-toml = { workspace = true }
|
||||
wasmer-wasm-interface = { version = "4.2.2", path = "../wasm-interface", optional = true }
|
||||
wasmer-wasm-interface = { version = "4.2.3", path = "../wasm-interface", optional = true }
|
||||
wasmparser = { version = "0.51.4", optional = true }
|
||||
whoami = "1.2.3"
|
||||
|
||||
|
@ -12,9 +12,9 @@ repository.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["sys", "compiler"] }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["sys", "compiler"] }
|
||||
wasmer-vm = { path = "../vm", version = "=4.2.3" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
region = { version = "3.0" }
|
||||
tracing = "0.1.37"
|
||||
|
||||
@ -23,7 +23,7 @@ libc = { version = "^0.2", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
wasmer-wasix = { path = "../wasix", version = "0.15.0" }
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["sys", "compiler", "cranelift"] }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["sys", "compiler", "cranelift"] }
|
||||
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
|
||||
tracing = "0.1.37"
|
||||
|
||||
|
@ -13,7 +13,7 @@ rust-version.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
libc = { version = "^0.2", default-features = false }
|
||||
memoffset = "0.8.0"
|
||||
indexmap = { version = "1.6" }
|
||||
|
@ -20,7 +20,7 @@ once_cell = "1.13"
|
||||
thiserror = "1.0"
|
||||
tracing-lib = { version = "0.1.26", optional = true, package = "tracing" }
|
||||
wai-bindgen-wasmer-impl = { version = "0.2.2" }
|
||||
wasmer = { version = "=4.2.2", path = "../api", default-features = false }
|
||||
wasmer = { version = "=4.2.3", path = "../api", default-features = false }
|
||||
|
||||
[features]
|
||||
# Enables generated code to emit events via the `tracing` crate whenever wasm is
|
||||
|
@ -16,7 +16,7 @@ rust-version.workspace = true
|
||||
maintenance = { status = "experimental" }
|
||||
|
||||
[dependencies]
|
||||
wasmer = { version = "4.2.2", path = "../api", default-features=false }
|
||||
wasmer = { version = "4.2.3", path = "../api", default-features=false }
|
||||
wasmer-wasix = { version = "0.15.0", path = "../wasix", default-features=false }
|
||||
wasmer-wasix-types = { path = "../wasi-types", version = "0.15.0" }
|
||||
tracing = "0.1"
|
||||
|
@ -15,9 +15,9 @@ rust-version.workspace = true
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
wasmer = { default-features = false, path = "../api", version = "=4.2.2" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2" }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.2" }
|
||||
wasmer = { default-features = false, path = "../api", version = "=4.2.3" }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3" }
|
||||
wasmer-derive = { path = "../derive", version = "=4.2.3" }
|
||||
wai-bindgen-gen-rust = "0.2.1"
|
||||
wai-bindgen-rust = { version = "0.2.1", default-features = false, features = ["macros"] }
|
||||
wai-bindgen-gen-rust-wasm = "0.2.1"
|
||||
|
@ -18,12 +18,12 @@ thiserror = "1"
|
||||
tracing = { version = "0.1.37" }
|
||||
getrandom = "0.2"
|
||||
wasmer-wasix-types = { path = "../wasi-types", version = "0.15.0", features = [ "enable-serde" ] }
|
||||
wasmer-types = { path = "../types", version = "=4.2.2", default-features = false }
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["wat", "js-serializable-module"] }
|
||||
wasmer-types = { path = "../types", version = "=4.2.3", default-features = false }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["wat", "js-serializable-module"] }
|
||||
virtual-mio = { path = "../virtual-io", version = "0.3.0", default-features = false }
|
||||
virtual-fs = { path = "../virtual-fs", version = "0.9.0", default-features = false, features = ["webc-fs"] }
|
||||
virtual-net = { path = "../virtual-net", version = "0.6.1", default-features = false }
|
||||
wasmer-emscripten = { path = "../emscripten", version = "=4.2.2", optional = true }
|
||||
wasmer-emscripten = { path = "../emscripten", version = "=4.2.3", optional = true }
|
||||
typetag = { version = "0.1", optional = true }
|
||||
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
||||
bincode = { version = "1.3" }
|
||||
@ -94,7 +94,7 @@ termios = { version = "0.3" }
|
||||
winapi = "0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["wat", "js-serializable-module"] }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["wat", "js-serializable-module"] }
|
||||
tokio = { version = "1", features = [ "sync", "macros", "rt" ], default_features = false }
|
||||
pretty_assertions = "1.3.0"
|
||||
wasm-bindgen-test = "0.3.0"
|
||||
@ -105,7 +105,7 @@ tracing-wasm = "0.2"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||
tracing-subscriber = { version = "^0.3" }
|
||||
wasmer = { path = "../api", version = "=4.2.2", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] }
|
||||
wasmer = { path = "../api", version = "=4.2.3", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] }
|
||||
|
||||
[features]
|
||||
default = ["sys-default"]
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
PREVIOUS_VERSION='4.2.1'
|
||||
NEXT_VERSION='4.2.2'
|
||||
PREVIOUS_VERSION='4.2.2'
|
||||
NEXT_VERSION='4.2.3'
|
||||
|
||||
import os
|
||||
import re
|
||||
|
@ -1,6 +1,6 @@
|
||||
[Setup]
|
||||
AppName=Wasmer
|
||||
AppVersion=4.2.2
|
||||
AppVersion=4.2.3
|
||||
DefaultDirName={pf}\Wasmer
|
||||
DefaultGroupName=Wasmer
|
||||
Compression=lzma2
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-integration-tests-cli"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
description = "CLI integration tests"
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-integration-tests-ios"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
description = "iOS integration tests"
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-wast"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
description = "wast testing support for wasmer"
|
||||
license = "MIT OR Apache-2.0 WITH LLVM-exception"
|
||||
@ -12,7 +12,7 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
wasmer = { path = "../../../lib/api", version = "=4.2.2", default-features = false }
|
||||
wasmer = { path = "../../../lib/api", version = "=4.2.3", default-features = false }
|
||||
wasmer-wasix = { path = "../../../lib/wasix", version = "0.15.0" }
|
||||
virtual-fs = { path = "../../../lib/virtual-fs", version = "0.9.0" }
|
||||
wast = "38.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasi-test-generator"
|
||||
version = "4.2.2"
|
||||
version = "4.2.3"
|
||||
description = "Tests for our WASI implementation"
|
||||
license = "MIT"
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
|
Reference in New Issue
Block a user