Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped crates version pre-beta.2 release #3743

Merged
merged 1 commit into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ wasmer-compiler-cranelift = { version = "=3.2.0-beta.1", path = "lib/compiler-cr
wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "lib/emscripten", optional = true }
wasmer-wasix = { version = "0.1.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 }
wasi-test-generator = { version = "=3.2.0-beta.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.2.0-beta.1", path = "lib/cache", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "../compiler-llvm", o
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "../emscripten", optional = true }
wasmer-compiler = { version = "=3.2.0-beta.1", path = "../compiler", optional = true }
wasmer-middlewares = { version = "=3.2.0-beta.1", path = "../middlewares", optional = true }
wasmer-wasix = { version = "0.1.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" }
virtual-fs = { version = "0.1.0", 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 }
enumset = "1.0.2"
cfg-if = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ wasmer-compiler-singlepass = { version = "=3.2.0-beta.1", path = "../compiler-si
wasmer-compiler-llvm = { version = "=3.2.0-beta.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.2.0-beta.1", path = "../emscripten" }
wasmer-vm = { version = "=3.2.0-beta.1", path = "../vm" }
wasmer-wasix = { version = "0.1.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.1.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
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-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.2.0", path = "../registry", features = ["build-package"] }
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-fs = { version = "0.1.1", path = "../vfs", default-features = false, features = ["host-fs"] }
virtual-net = { version = "0.1.0", path = "../vnet" }
atty = "0.2"
colored = "2.0"
Expand Down
4 changes: 2 additions & 2 deletions lib/sys-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-sys-utils"
version = "0.1.0"
version = "0.2.0"
description = "Wasmer utilities for a sys environment."
categories = ["wasm"]
keywords = ["wasm", "webassembly"]
Expand All @@ -19,7 +19,7 @@ region = { version = "3.0" }
libc = { version = "^0.2", default-features = false }

[dev-dependencies]
wasmer-wasix = { path = "../wasi", version = "0.1.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"] }
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
tracing = "0.1.37"
2 changes: 1 addition & 1 deletion lib/vfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-fs"
version = "0.1.0"
version = "0.1.1"
description = "Wasmer Virtual FileSystem"
authors = ["Wasmer Engineering Team <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion lib/wai-bindgen-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wai-bindgen-wasmer"
description = "Generate WAI glue for a Rust Wasmer host"
version = "0.2.4"
version = "0.2.5"
edition = "2018"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi-experimental-io-devices/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix-experimental-io-devices"
version = "0.1.0"
version = "0.2.0"
description = "An experimental non-standard WASI/WASIX extension for graphics"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "types"]
Expand All @@ -14,8 +14,8 @@ edition = "2018"
maintenance = { status = "experimental" }

[dependencies]
wasmer-wasix = { version = "0.1.0", path = "../wasi", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.1.0" }
wasmer-wasix = { version = "0.2.0", path = "../wasi", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.2.0" }
tracing = "0.1"
minifb = { version = "0.24.0", optional = true }
nix = "0.25.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix-types"
version = "0.1.0"
version = "0.2.0"
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix"
version = "0.1.0"
version = "0.2.0"
description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand All @@ -15,10 +15,10 @@ cfg-if = "1.0"
thiserror = "1"
tracing = { version = "0.1" }
getrandom = "0.2"
wasmer-wasix-types = { path = "../wasi-types", version = "0.1.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 = { path = "../api", version = "=3.2.0-beta.1", default-features = false, features = ["wat", "js-serializable-module"] }
virtual-fs = { path = "../vfs", version = "0.1.0", 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 }
wasmer-emscripten = { path = "../emscripten", version = "=3.2.0-beta.1", optional = true }
typetag = { version = "0.1", optional = true }
Expand Down
1 change: 1 addition & 0 deletions lib/wasix/wasix-http-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "wasix_http_client"
description = "Wasix bindings library for Webassembly."
version = "0.1.0"
license = "MIT"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/wast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0"
wasmer = { path = "../../../lib/api", version = "=3.2.0-beta.1", default-features = false }
wasmer-wasix = { path = "../../../lib/wasi", version = "0.1.0" }
wasmer-wasix = { path = "../../../lib/wasi", version = "0.2.0" }
virtual-fs = { path = "../../../lib/vfs", version = "0.1.0" }
wast = "38.0"
serde = "1"
Expand Down