mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-03 16:09:20 +00:00
Release 3.2.0-beta.2
This commit is contained in:
403
Cargo.lock
generated
403
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
26
Cargo.toml
26
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-workspace"
|
name = "wasmer-workspace"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer workspace"
|
description = "Wasmer workspace"
|
||||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||||
repository = "https://github.com/wasmerio/wasmer"
|
repository = "https://github.com/wasmerio/wasmer"
|
||||||
@ -10,20 +10,20 @@ publish = false
|
|||||||
autoexamples = false
|
autoexamples = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer = { version = "=3.2.0-beta.1", path = "lib/api", default-features = false }
|
wasmer = { version = "=3.2.0-beta.2", path = "lib/api", default-features = false }
|
||||||
wasmer-compiler = { version = "=3.2.0-beta.1", path = "lib/compiler", features = [
|
wasmer-compiler = { version = "=3.2.0-beta.2", path = "lib/compiler", features = [
|
||||||
"compiler",
|
"compiler",
|
||||||
] }
|
] }
|
||||||
wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "lib/compiler-cranelift", optional = true }
|
wasmer-compiler-cranelift = { version = "=3.2.0-beta.2", path = "lib/compiler-cranelift", optional = true }
|
||||||
wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "lib/compiler-singlepass", optional = true }
|
wasmer-compiler-singlepass = { version = "=3.2.0-beta.2", path = "lib/compiler-singlepass", optional = true }
|
||||||
wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "lib/compiler-llvm", optional = true }
|
wasmer-compiler-llvm = { version = "=3.2.0-beta.2", path = "lib/compiler-llvm", optional = true }
|
||||||
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "lib/emscripten", optional = true }
|
wasmer-emscripten = { version = "=3.2.0-beta.2", path = "lib/emscripten", optional = true }
|
||||||
wasmer-wasix = { version = "0.2.0", path = "lib/wasi", optional = true }
|
wasmer-wasix = { version = "0.2.0", path = "lib/wasi", optional = true }
|
||||||
wasmer-wast = { version = "=3.2.0-beta.1", path = "tests/lib/wast", optional = true }
|
wasmer-wast = { version = "=3.2.0-beta.2", path = "tests/lib/wast", optional = true }
|
||||||
wasi-test-generator = { version = "=3.2.0-beta.1", path = "tests/wasi-wast", optional = true }
|
wasi-test-generator = { version = "=3.2.0-beta.2", path = "tests/wasi-wast", optional = true }
|
||||||
wasmer-cache = { version = "=3.2.0-beta.1", path = "lib/cache", optional = true }
|
wasmer-cache = { version = "=3.2.0-beta.2", path = "lib/cache", optional = true }
|
||||||
wasmer-types = { version = "=3.2.0-beta.1", path = "lib/types" }
|
wasmer-types = { version = "=3.2.0-beta.2", path = "lib/types" }
|
||||||
wasmer-middlewares = { version = "=3.2.0-beta.1", path = "lib/middlewares", optional = true }
|
wasmer-middlewares = { version = "=3.2.0-beta.2", path = "lib/middlewares", optional = true }
|
||||||
cfg-if = "1.0"
|
cfg-if = "1.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
@ -72,7 +72,7 @@ glob = "0.3"
|
|||||||
rustc_version = "0.4"
|
rustc_version = "0.4"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasmer = { version = "=3.2.0-beta.1", path = "lib/api", default-features = false, features = [
|
wasmer = { version = "=3.2.0-beta.2", path = "lib/api", default-features = false, features = [
|
||||||
"cranelift",
|
"cranelift",
|
||||||
] }
|
] }
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer"
|
name = "wasmer"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "High-performance WebAssembly runtime"
|
description = "High-performance WebAssembly runtime"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly", "runtime", "vm"]
|
keywords = ["wasm", "webassembly", "runtime", "vm"]
|
||||||
@ -35,15 +35,15 @@ tracing = { version = "0.1", optional = 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 = "=3.2.0-beta.1" }
|
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.2" }
|
||||||
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.1" }
|
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.2" }
|
||||||
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.1" }
|
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.2" }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
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 = "=3.2.0-beta.1", optional = true }
|
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.0-beta.2", optional = true }
|
||||||
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.2.0-beta.1", optional = true }
|
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.2.0-beta.2", optional = true }
|
||||||
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.2.0-beta.1", optional = true }
|
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.2.0-beta.2", 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 }
|
||||||
@ -56,17 +56,17 @@ winapi = "0.3"
|
|||||||
wat = "1.0"
|
wat = "1.0"
|
||||||
tempfile = "3.4.0"
|
tempfile = "3.4.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
macro-wasmer-universal-test = { version = "3.2.0-beta.1", path = "./macro-wasmer-universal-test" }
|
macro-wasmer-universal-test = { version = "3.2.0-beta.2", 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 = "=3.2.0-beta.1", default-features = false, features = ["std"] }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", default-features = false, features = ["std"] }
|
||||||
wasm-bindgen = "0.2.74"
|
wasm-bindgen = "0.2.74"
|
||||||
wasm-bindgen-downcast = { version = "0.1.1" }
|
wasm-bindgen-downcast = { version = "0.1.1" }
|
||||||
js-sys = "0.3.51"
|
js-sys = "0.3.51"
|
||||||
#web-sys = { version = "0.3.51", features = [ "console" ] }
|
#web-sys = { version = "0.3.51", features = [ "console" ] }
|
||||||
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.1" }
|
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.2" }
|
||||||
# - Optional dependencies for `js`.
|
# - Optional dependencies for `js`.
|
||||||
wasmparser = { version = "0.95", default-features = false, optional = true }
|
wasmparser = { version = "0.95", default-features = false, optional = true }
|
||||||
hashbrown = { version = "0.11", optional = true }
|
hashbrown = { version = "0.11", optional = true }
|
||||||
@ -78,7 +78,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 = "3.2.0-beta.1", path = "./macro-wasmer-universal-test" }
|
macro-wasmer-universal-test = { version = "3.2.0-beta.2", 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 = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "Universal test macro for wasmer-test"
|
description = "Universal test macro for wasmer-test"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-c-api"
|
name = "wasmer-c-api"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer C API library"
|
description = "Wasmer C API library"
|
||||||
categories = ["wasm", "api-bindings"]
|
categories = ["wasm", "api-bindings"]
|
||||||
keywords = ["wasm", "webassembly", "runtime"]
|
keywords = ["wasm", "webassembly", "runtime"]
|
||||||
@ -22,15 +22,15 @@ 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 = "=3.2.0-beta.1", path = "../api", default-features = false, package = "wasmer" }
|
wasmer-api = { version = "=3.2.0-beta.2", path = "../api", default-features = false, package = "wasmer" }
|
||||||
wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "../compiler-cranelift", optional = true }
|
wasmer-compiler-cranelift = { version = "=3.2.0-beta.2", path = "../compiler-cranelift", optional = true }
|
||||||
wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "../compiler-singlepass", optional = true }
|
wasmer-compiler-singlepass = { version = "=3.2.0-beta.2", path = "../compiler-singlepass", optional = true }
|
||||||
wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "../compiler-llvm", optional = true }
|
wasmer-compiler-llvm = { version = "=3.2.0-beta.2", path = "../compiler-llvm", optional = true }
|
||||||
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "../emscripten", optional = true }
|
wasmer-emscripten = { version = "=3.2.0-beta.2", path = "../emscripten", optional = true }
|
||||||
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", optional = true }
|
wasmer-compiler = { version = "=3.2.0-beta.2", path = "../compiler", optional = true }
|
||||||
wasmer-middlewares = { version = "=3.2.0-beta.1", path = "../middlewares", optional = true }
|
wasmer-middlewares = { version = "=3.2.0-beta.2", path = "../middlewares", optional = true }
|
||||||
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["host-fs", "host-vnet"], optional = true }
|
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["host-fs", "host-vnet"], optional = true }
|
||||||
wasmer-types = { version = "=3.2.0-beta.1", path = "../types" }
|
wasmer-types = { version = "=3.2.0-beta.2", path = "../types" }
|
||||||
virtual-fs = { version = "0.1.1", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
|
virtual-fs = { version = "0.1.1", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
|
||||||
webc = { version = "5.0.0-rc.5", optional = true }
|
webc = { version = "5.0.0-rc.5", optional = true }
|
||||||
enumset = "1.0.2"
|
enumset = "1.0.2"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-capi-examples-runner"
|
name = "wasmer-capi-examples-runner"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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 = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-cache"
|
name = "wasmer-cache"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Cache system for Wasmer WebAssembly runtime"
|
description = "Cache system for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm", "caching"]
|
categories = ["wasm", "caching"]
|
||||||
keywords = ["wasm", "webassembly", "cache"]
|
keywords = ["wasm", "webassembly", "cache"]
|
||||||
@ -11,7 +11,7 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
blake3 = "1.0"
|
blake3 = "1.0"
|
||||||
@ -20,7 +20,7 @@ blake3 = "1.0"
|
|||||||
criterion = "0.3"
|
criterion = "0.3"
|
||||||
tempfile = "3.4.0"
|
tempfile = "3.4.0"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.0-beta.1" }
|
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.0-beta.2" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["filesystem"]
|
default = ["filesystem"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-compiler-cli"
|
name = "wasmer-compiler-cli"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer Compiler CLI"
|
description = "Wasmer Compiler CLI"
|
||||||
categories = ["wasm", "command-line-interface"]
|
categories = ["wasm", "command-line-interface"]
|
||||||
keywords = ["wasm", "webassembly", "cli"]
|
keywords = ["wasm", "webassembly", "cli"]
|
||||||
@ -18,8 +18,8 @@ path = "src/bin/wasmer_compiler.rs"
|
|||||||
doc = false
|
doc = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", features = ["compiler"] }
|
wasmer-compiler = { version = "=3.2.0-beta.2", path = "../compiler", features = ["compiler"] }
|
||||||
wasmer-types = { version = "=3.2.0-beta.1", path = "../types" }
|
wasmer-types = { version = "=3.2.0-beta.2", path = "../types" }
|
||||||
atty = "0.2"
|
atty = "0.2"
|
||||||
colored = "2.0"
|
colored = "2.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
@ -35,12 +35,12 @@ 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 = "=3.2.0-beta.1", path = "../compiler-singlepass", optional = true }
|
wasmer-compiler-singlepass = { version = "=3.2.0-beta.2", path = "../compiler-singlepass", optional = true }
|
||||||
wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "../compiler-cranelift", optional = true }
|
wasmer-compiler-cranelift = { version = "=3.2.0-beta.2", path = "../compiler-cranelift", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
|
wasmer-compiler-singlepass = { version = "=3.2.0-beta.2", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
|
||||||
wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
|
wasmer-compiler-cranelift = { version = "=3.2.0-beta.2", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
unix_mode = "0.1.3"
|
unix_mode = "0.1.3"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-cli"
|
name = "wasmer-cli"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer CLI"
|
description = "Wasmer CLI"
|
||||||
categories = ["wasm", "command-line-interface"]
|
categories = ["wasm", "command-line-interface"]
|
||||||
keywords = ["wasm", "webassembly", "cli"]
|
keywords = ["wasm", "webassembly", "cli"]
|
||||||
@ -25,20 +25,20 @@ doc = false
|
|||||||
required-features = ["headless"]
|
required-features = ["headless"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer = { version = "=3.2.0-beta.1", path = "../api", default-features = false }
|
wasmer = { version = "=3.2.0-beta.2", path = "../api", default-features = false }
|
||||||
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", features = ["compiler"] }
|
wasmer-compiler = { version = "=3.2.0-beta.2", path = "../compiler", features = ["compiler"] }
|
||||||
wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "../compiler-cranelift", optional = true }
|
wasmer-compiler-cranelift = { version = "=3.2.0-beta.2", path = "../compiler-cranelift", optional = true }
|
||||||
wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "../compiler-singlepass", optional = true }
|
wasmer-compiler-singlepass = { version = "=3.2.0-beta.2", path = "../compiler-singlepass", optional = true }
|
||||||
wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "../compiler-llvm", optional = true }
|
wasmer-compiler-llvm = { version = "=3.2.0-beta.2", path = "../compiler-llvm", optional = true }
|
||||||
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "../emscripten" }
|
wasmer-emscripten = { version = "=3.2.0-beta.2", path = "../emscripten" }
|
||||||
wasmer-vm = { version = "=3.2.0-beta.1", path = "../vm" }
|
wasmer-vm = { version = "=3.2.0-beta.2", path = "../vm" }
|
||||||
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] }
|
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] }
|
||||||
wasmer-wasix-experimental-io-devices = { version = "0.2.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
|
wasmer-wasix-experimental-io-devices = { version = "0.2.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
|
||||||
wasmer-wast = { version = "=3.2.0-beta.1", path = "../../tests/lib/wast", optional = true }
|
wasmer-wast = { version = "=3.2.0-beta.2", path = "../../tests/lib/wast", optional = true }
|
||||||
wasmer-cache = { version = "=3.2.0-beta.1", path = "../cache", features = ["blake3-pure"] }
|
wasmer-cache = { version = "=3.2.0-beta.2", path = "../cache", features = ["blake3-pure"] }
|
||||||
wasmer-types = { version = "=3.2.0-beta.1", path = "../types", features = ["enable-serde"] }
|
wasmer-types = { version = "=3.2.0-beta.2", path = "../types", features = ["enable-serde"] }
|
||||||
wasmer-registry = { version = "4.2.0", path = "../registry", features = ["build-package"] }
|
wasmer-registry = { version = "4.2.0", path = "../registry", features = ["build-package"] }
|
||||||
wasmer-object = { version = "=3.2.0-beta.1", path = "../object", optional = true }
|
wasmer-object = { version = "=3.2.0-beta.2", path = "../object", optional = true }
|
||||||
virtual-fs = { version = "0.1.1", path = "../vfs", default-features = false, features = ["host-fs"] }
|
virtual-fs = { version = "0.1.1", path = "../vfs", default-features = false, features = ["host-fs"] }
|
||||||
virtual-net = { version = "0.1.0", path = "../vnet" }
|
virtual-net = { version = "0.1.0", path = "../vnet" }
|
||||||
atty = "0.2"
|
atty = "0.2"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-compiler-cranelift"
|
name = "wasmer-compiler-cranelift"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Cranelift compiler for Wasmer WebAssembly runtime"
|
description = "Cranelift compiler for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly", "compiler", "cranelift"]
|
keywords = ["wasm", "webassembly", "compiler", "cranelift"]
|
||||||
@ -12,8 +12,8 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.1", features = ["translator", "compiler"], default-features = false }
|
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.2", features = ["translator", "compiler"], default-features = false }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1", default-features = false, features = ["std"] }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", 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 }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-compiler-llvm"
|
name = "wasmer-compiler-llvm"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "LLVM compiler for Wasmer WebAssembly runtime"
|
description = "LLVM compiler for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly", "compiler", "llvm"]
|
keywords = ["wasm", "webassembly", "compiler", "llvm"]
|
||||||
@ -12,11 +12,11 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.1", features = [
|
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.2", features = [
|
||||||
"translator", "compiler"
|
"translator", "compiler"
|
||||||
] }
|
] }
|
||||||
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.1" }
|
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.2" }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
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"] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-compiler-singlepass"
|
name = "wasmer-compiler-singlepass"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Singlepass compiler for Wasmer WebAssembly runtime"
|
description = "Singlepass compiler for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly", "compiler", "singlepass"]
|
keywords = ["wasm", "webassembly", "compiler", "singlepass"]
|
||||||
@ -12,8 +12,8 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.1", features = ["translator", "compiler"], default-features = false }
|
wasmer-compiler = { path = "../compiler", version = "=3.2.0-beta.2", features = ["translator", "compiler"], default-features = false }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1", default-features = false, features = ["std"] }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", 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 = "1.0.2"
|
enumset = "1.0.2"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-compiler"
|
name = "wasmer-compiler"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Base compiler abstraction for Wasmer WebAssembly runtime"
|
description = "Base compiler abstraction for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm", "no-std"]
|
categories = ["wasm", "no-std"]
|
||||||
keywords = ["wasm", "webassembly", "compiler"]
|
keywords = ["wasm", "webassembly", "compiler"]
|
||||||
@ -11,8 +11,8 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1", default-features = false }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", default-features = false }
|
||||||
wasmer-object = { path = "../object", version = "=3.2.0-beta.1", optional = true }
|
wasmer-object = { path = "../object", version = "=3.2.0-beta.2", optional = true }
|
||||||
wasmparser = { version = "0.95", optional = true, default-features = false }
|
wasmparser = { version = "0.95", optional = true, default-features = false }
|
||||||
enumset = "1.0.2"
|
enumset = "1.0.2"
|
||||||
hashbrown = { version = "0.11", optional = true }
|
hashbrown = { version = "0.11", optional = true }
|
||||||
@ -32,7 +32,7 @@ leb128 = "0.2"
|
|||||||
enum-iterator = "0.7.0"
|
enum-iterator = "0.7.0"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[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" }
|
region = { version = "3.0" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-derive"
|
name = "wasmer-derive"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer derive macros"
|
description = "Wasmer derive macros"
|
||||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||||
repository = "https://github.com/wasmerio/wasmer"
|
repository = "https://github.com/wasmerio/wasmer"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-emscripten"
|
name = "wasmer-emscripten"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Emscripten implementation library for Wasmer WebAssembly runtime"
|
description = "Emscripten implementation library for Wasmer WebAssembly runtime"
|
||||||
categories = ["wasm", "os"]
|
categories = ["wasm", "os"]
|
||||||
keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"]
|
keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"]
|
||||||
@ -16,8 +16,8 @@ lazy_static = "1.4"
|
|||||||
libc = "^0.2"
|
libc = "^0.2"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
time = { version = "0.2", features = ["std"] }
|
time = { version = "0.2", features = ["std"] }
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
getrandom = "0.2"
|
getrandom = "0.2"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-middlewares"
|
name = "wasmer-middlewares"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||||
description = "A collection of various useful middlewares"
|
description = "A collection of various useful middlewares"
|
||||||
license = "MIT OR Apache-2.0 WITH LLVM-exception"
|
license = "MIT OR Apache-2.0 WITH LLVM-exception"
|
||||||
@ -11,12 +11,12 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["compiler"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false, features = ["compiler"] }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.1" }
|
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.2" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", features = ["compiler"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", features = ["compiler"] }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-object"
|
name = "wasmer-object"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer Native Object generator"
|
description = "Wasmer Native Object generator"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly"]
|
keywords = ["wasm", "webassembly"]
|
||||||
@ -11,6 +11,6 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
object = { version = "0.28.3", default-features = false, features = ["write"] }
|
object = { version = "0.28.3", default-features = false, features = ["write"] }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
@ -43,7 +43,7 @@ tempfile = "3.4.0"
|
|||||||
rusqlite = { version = "0.28.0", optional = true, features = ["bundled"] }
|
rusqlite = { version = "0.28.0", optional = true, features = ["bundled"] }
|
||||||
time = { version = "0.3.17", default-features = false, features = ["parsing", "std", "formatting"], optional = true }
|
time = { version = "0.3.17", default-features = false, features = ["parsing", "std", "formatting"], optional = true }
|
||||||
indexmap = { version = "1.9.3", optional = true }
|
indexmap = { version = "1.9.3", optional = true }
|
||||||
wasmer-wasm-interface = { version = "3.2.0-beta.1", path = "../wasm-interface", optional = true }
|
wasmer-wasm-interface = { version = "3.2.0-beta.2", path = "../wasm-interface", optional = true }
|
||||||
wasmparser = { version = "0.51.4", optional = true }
|
wasmparser = { version = "0.51.4", optional = true }
|
||||||
rpassword = { version = "7.2.0", optional = true }
|
rpassword = { version = "7.2.0", optional = true }
|
||||||
minisign = { version = "0.7.2", optional = true }
|
minisign = { version = "0.7.2", optional = true }
|
||||||
|
@ -10,9 +10,9 @@ license = "MIT OR Apache-2.0 WITH LLVM-exception"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["sys", "compiler"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false, features = ["sys", "compiler"] }
|
||||||
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.1" }
|
wasmer-vm = { path = "../vm", version = "=3.2.0-beta.2" }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
region = { version = "3.0" }
|
region = { version = "3.0" }
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
@ -20,6 +20,6 @@ libc = { version = "^0.2", default-features = false }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasmer-wasix = { path = "../wasi", version = "0.2.0" }
|
wasmer-wasix = { path = "../wasi", version = "0.2.0" }
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["sys", "compiler", "cranelift"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", 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"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-types"
|
name = "wasmer-types"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Wasmer Common Types"
|
description = "Wasmer Common Types"
|
||||||
categories = ["wasm", "no-std", "data-structures"]
|
categories = ["wasm", "no-std", "data-structures"]
|
||||||
keywords = ["wasm", "webassembly", "types"]
|
keywords = ["wasm", "webassembly", "types"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-vm"
|
name = "wasmer-vm"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
description = "Runtime library support for Wasmer"
|
description = "Runtime library support for Wasmer"
|
||||||
categories = ["wasm"]
|
categories = ["wasm"]
|
||||||
keywords = ["wasm", "webassembly"]
|
keywords = ["wasm", "webassembly"]
|
||||||
@ -11,7 +11,7 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
libc = { version = "^0.2", default-features = false }
|
libc = { version = "^0.2", default-features = false }
|
||||||
memoffset = "0.6"
|
memoffset = "0.6"
|
||||||
indexmap = { version = "1.6" }
|
indexmap = { version = "1.6" }
|
||||||
|
@ -18,7 +18,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 = "=3.2.0-beta.1", path = "../api", default-features = false }
|
wasmer = { version = "=3.2.0-beta.2", 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
|
||||||
|
@ -13,9 +13,9 @@ edition = "2018"
|
|||||||
# 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 = "=3.2.0-beta.1" }
|
wasmer = { default-features = false, path = "../api", version = "=3.2.0-beta.2" }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1" }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2" }
|
||||||
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.1" }
|
wasmer-derive = { path = "../derive", version = "=3.2.0-beta.2" }
|
||||||
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"
|
||||||
|
@ -16,11 +16,11 @@ thiserror = "1"
|
|||||||
tracing = { version = "0.1" }
|
tracing = { version = "0.1" }
|
||||||
getrandom = "0.2"
|
getrandom = "0.2"
|
||||||
wasmer-wasix-types = { path = "../wasi-types", version = "0.2.0" }
|
wasmer-wasix-types = { path = "../wasi-types", version = "0.2.0" }
|
||||||
wasmer-types = { path = "../types", version = "=3.2.0-beta.1", default-features = false }
|
wasmer-types = { path = "../types", version = "=3.2.0-beta.2", default-features = false }
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["wat", "js-serializable-module"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false, features = ["wat", "js-serializable-module"] }
|
||||||
virtual-fs = { path = "../vfs", version = "0.1.1", default-features = false, features = ["webc-fs"] }
|
virtual-fs = { path = "../vfs", version = "0.1.1", default-features = false, features = ["webc-fs"] }
|
||||||
virtual-net = { path = "../vnet", version = "0.1.0", default-features = false }
|
virtual-net = { path = "../vnet", version = "0.1.0", default-features = false }
|
||||||
wasmer-emscripten = { path = "../emscripten", version = "=3.2.0-beta.1", optional = true }
|
wasmer-emscripten = { path = "../emscripten", version = "=3.2.0-beta.2", 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" }
|
||||||
@ -85,7 +85,7 @@ winapi = "0.3"
|
|||||||
wasm-bindgen = "0.2.74"
|
wasm-bindgen = "0.2.74"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["wat", "js-serializable-module"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", 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 }
|
||||||
tempfile = "3.4.0"
|
tempfile = "3.4.0"
|
||||||
|
|
||||||
@ -95,7 +95,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.2" }
|
tracing-subscriber = { version = "^0.2" }
|
||||||
wasmer = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] }
|
wasmer = { path = "../api", version = "=3.2.0-beta.2", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["sys-default"]
|
default = ["sys-default"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasmer-wasm-interface"
|
name = "wasmer-wasm-interface"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/wasmerio/wapm-cli"
|
repository = "https://github.com/wasmerio/wapm-cli"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
PREVIOUS_VERSION='3.2.0-alpha.1'
|
PREVIOUS_VERSION='3.2.0-beta.1'
|
||||||
NEXT_VERSION='3.2.0-beta.1'
|
NEXT_VERSION='3.2.0-beta.2'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=Wasmer
|
AppName=Wasmer
|
||||||
AppVersion=3.2.0-beta.1
|
AppVersion=3.2.0-beta.2
|
||||||
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 = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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 = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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 = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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 = "=3.2.0-beta.1", default-features = false }
|
wasmer = { path = "../../../lib/api", version = "=3.2.0-beta.2", default-features = false }
|
||||||
wasmer-wasix = { path = "../../../lib/wasi", version = "0.2.0" }
|
wasmer-wasix = { path = "../../../lib/wasi", version = "0.2.0" }
|
||||||
virtual-fs = { path = "../../../lib/vfs", version = "0.1.0" }
|
virtual-fs = { path = "../../../lib/vfs", version = "0.1.0" }
|
||||||
wast = "38.0"
|
wast = "38.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wasi-test-generator"
|
name = "wasi-test-generator"
|
||||||
version = "3.2.0-beta.1"
|
version = "3.2.0-beta.2"
|
||||||
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