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