mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-03 16:09:20 +00:00
Merge remote-tracking branch 'origin/master' into wasix
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-c-api"
|
||||
version = "3.1.0"
|
||||
version = "3.2.0-alpha.1"
|
||||
description = "Wasmer C API library"
|
||||
categories = ["wasm", "api-bindings"]
|
||||
keywords = ["wasm", "webassembly", "runtime"]
|
||||
@ -22,16 +22,16 @@ 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 = "=3.1.0", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
|
||||
wasmer-compiler-cranelift = { version = "=3.1.0", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=3.1.0", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=3.1.0", path = "../compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=3.1.0", path = "../emscripten", optional = true }
|
||||
wasmer-compiler = { version = "=3.1.0", path = "../compiler" }
|
||||
wasmer-middlewares = { version = "=3.1.0", path = "../middlewares", optional = true }
|
||||
wasmer-wasi = { version = "=3.1.0", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
|
||||
wasmer-types = { version = "=3.1.0", path = "../types" }
|
||||
wasmer-vfs = { version = "=3.1.0", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
|
||||
wasmer-api = { version = "=3.2.0-alpha.1", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
|
||||
wasmer-compiler-cranelift = { version = "=3.2.0-alpha.1", path = "../compiler-cranelift", optional = true }
|
||||
wasmer-compiler-singlepass = { version = "=3.2.0-alpha.1", path = "../compiler-singlepass", optional = true }
|
||||
wasmer-compiler-llvm = { version = "=3.2.0-alpha.1", path = "../compiler-llvm", optional = true }
|
||||
wasmer-emscripten = { version = "=3.2.0-alpha.1", path = "../emscripten", optional = true }
|
||||
wasmer-compiler = { version = "=3.2.0-alpha.1", path = "../compiler" }
|
||||
wasmer-middlewares = { version = "=3.2.0-alpha.1", path = "../middlewares", optional = true }
|
||||
wasmer-wasi = { version = "=3.2.0-alpha.1", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
|
||||
wasmer-types = { version = "=3.2.0-alpha.1", path = "../types" }
|
||||
wasmer-vfs = { version = "=3.2.0-alpha.1", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
|
||||
webc = { version = "4.0.0", optional = true }
|
||||
enumset = "1.0.2"
|
||||
cfg-if = "1.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-capi-examples-runner"
|
||||
version = "3.1.0"
|
||||
version = "3.2.0-alpha.1"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "wasmer-capi-examples-runner"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-c-api-test-runner"
|
||||
version = "3.1.0"
|
||||
version = "3.2.0-alpha.1"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "wasmer-c-api-test-runner"
|
||||
|
Reference in New Issue
Block a user