mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-22 16:35:33 +00:00
Fixes post 3.2.0-beta.1 release (but needed for the crates publication) (#3705)
This commit is contained in:
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -4863,7 +4863,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "wai-bindgen-wasmer"
|
||||
version = "0.2.3"
|
||||
version = "0.2.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
@ -5385,7 +5385,7 @@ dependencies = [
|
||||
"wasmer-compiler-singlepass",
|
||||
"wasmer-emscripten",
|
||||
"wasmer-object",
|
||||
"wasmer-registry 4.0.0",
|
||||
"wasmer-registry 4.1.0",
|
||||
"wasmer-toml",
|
||||
"wasmer-types",
|
||||
"wasmer-vm",
|
||||
@ -5640,7 +5640,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "wasmer-registry"
|
||||
version = "4.0.0"
|
||||
version = "4.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console",
|
||||
|
@ -37,7 +37,7 @@ wasmer-wasix-experimental-io-devices = { version = "0.1.0", path = "../wasi-expe
|
||||
wasmer-wast = { version = "=3.2.0-beta.1", path = "../../tests/lib/wast", optional = true }
|
||||
wasmer-cache = { version = "=3.2.0-beta.1", path = "../cache", features = ["blake3-pure"] }
|
||||
wasmer-types = { version = "=3.2.0-beta.1", path = "../types", features = ["enable-serde"] }
|
||||
wasmer-registry = { version = "=4.0.0", path = "../registry" }
|
||||
wasmer-registry = { version = "4.1.0", path = "../registry" }
|
||||
wasmer-object = { version = "=3.2.0-beta.1", path = "../object", optional = true }
|
||||
virtual-fs = { version = "0.1.0", path = "../vfs", default-features = false, features = ["host-fs"] }
|
||||
virtual-net = { version = "0.1.0", path = "../vnet" }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "wasmer-registry"
|
||||
version = "4.0.0"
|
||||
version = "4.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "Crate to interact with the wasmer registry (wapm.io), download packages, etc."
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "wai-bindgen-wasmer"
|
||||
description = "Generate WAI glue for a Rust Wasmer host"
|
||||
version = "0.2.3"
|
||||
version = "0.2.4"
|
||||
edition = "2018"
|
||||
categories = ["wasm", "os"]
|
||||
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
|
||||
@ -29,3 +29,7 @@ tracing = ["tracing-lib", "wai-bindgen-wasmer-impl/tracing"]
|
||||
# Enables async support for generated code, although when enabled this still
|
||||
# needs to be configured through the macro invocation.
|
||||
async = ["async-trait", "wai-bindgen-wasmer-impl/async"]
|
||||
|
||||
# Wasmer features
|
||||
js = ["wasmer/js", "wasmer/std"]
|
||||
sys = ["wasmer/sys"]
|
||||
|
@ -3,7 +3,7 @@ name = "wasmer-wasix-types"
|
||||
version = "0.1.0"
|
||||
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
|
||||
categories = ["wasm", "os"]
|
||||
keywords = ["wasm", "webassembly", "wasi", "wasix", "sandbox", "ABI"]
|
||||
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
license = "MIT"
|
||||
|
@ -3,7 +3,7 @@ name = "wasmer-wasix"
|
||||
version = "0.1.0"
|
||||
description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime"
|
||||
categories = ["wasm", "os"]
|
||||
keywords = ["wasm", "webassembly", "wasi", "wasix", "sandbox", "ABI"]
|
||||
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
|
||||
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
license = "MIT"
|
||||
@ -52,7 +52,7 @@ linked_hash_set = { version = "0.1" }
|
||||
# the various compilers
|
||||
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", features = [ "translator" ], optional = true }
|
||||
http = "0.2.8"
|
||||
wai-bindgen-wasmer = { path = "../wai-bindgen-wasmer", version = "0.2.3", features = ["tracing"] }
|
||||
wai-bindgen-wasmer = { path = "../wai-bindgen-wasmer", version = "0.2.4", features = ["tracing"] }
|
||||
heapless = "0.7.16"
|
||||
once_cell = "1.17.0"
|
||||
pin-project = "1.0.12"
|
||||
|
@ -332,7 +332,7 @@ def make_release(version):
|
||||
if proc.returncode == 0:
|
||||
for line in proc.stdout:
|
||||
line = line.decode("utf-8").rstrip()
|
||||
if "Merge #" + pr_number in line:
|
||||
if "Merge pull request #" + pr_number in line:
|
||||
correct_checkout = line
|
||||
else:
|
||||
raise Exception("could not git log branch " + RELEASE_VERSION_WITH_V)
|
||||
|
@ -46,7 +46,9 @@ SETTINGS = {
|
||||
# compiler by default otherwise it won't work standalone
|
||||
"publish_features": {
|
||||
"wasmer-cli": "default,cranelift",
|
||||
"wasmer-wasi": "sys",
|
||||
"wasmer-wasix": "sys",
|
||||
"wasmer-wasix-types": "sys",
|
||||
"wai-bindgen-wasmer": "sys",
|
||||
},
|
||||
# workspace members we want to publish but whose path doesn't start by
|
||||
# "./lib/"
|
||||
|
Reference in New Issue
Block a user