Release version 2.2.1

This commit is contained in:
Amanieu d'Antras
2022-03-15 11:02:31 +00:00
parent 8b9af9bee7
commit fe9d2d8d22
33 changed files with 174 additions and 169 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api"
version = "2.2.0"
version = "2.2.1"
description = "Wasmer C API library"
categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"]
@ -22,18 +22,18 @@ crate-type = ["cdylib", "rlib", "staticlib"]
[dependencies]
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
# library name (see `[lib]`).
wasmer-api = { version = "=2.2.0", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=2.2.0", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.0", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.0", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.0", path = "../emscripten", optional = true }
wasmer-engine = { version = "=2.2.0", path = "../engine" }
wasmer-engine-universal = { version = "=2.2.0", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.0", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.0", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "=2.2.0", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=2.2.0", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=2.2.0", path = "../types" }
wasmer-api = { version = "=2.2.1", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=2.2.1", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.1", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.1", path = "../emscripten", optional = true }
wasmer-engine = { version = "=2.2.1", path = "../engine" }
wasmer-engine-universal = { version = "=2.2.1", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.1", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.1", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "=2.2.1", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=2.2.1", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=2.2.1", path = "../types" }
enumset = "1.0"
cfg-if = "1.0"
lazy_static = "1.4"