diff --git a/Cargo.lock b/Cargo.lock index f6d400801b5..0594e7e0d1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4755,7 +4755,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "virtual-fs" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-trait", @@ -4863,7 +4863,7 @@ dependencies = [ [[package]] name = "wai-bindgen-wasmer" -version = "0.2.4" +version = "0.2.5" dependencies = [ "anyhow", "async-trait", @@ -5676,7 +5676,7 @@ dependencies = [ [[package]] name = "wasmer-sys-utils" -version = "0.1.0" +version = "0.2.0" dependencies = [ "libc", "region", @@ -5749,7 +5749,7 @@ dependencies = [ [[package]] name = "wasmer-wasix" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -5810,7 +5810,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-experimental-io-devices" -version = "0.1.0" +version = "0.2.0" dependencies = [ "minifb", "nix 0.25.1", @@ -5824,7 +5824,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-types" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "bitflags", diff --git a/Cargo.toml b/Cargo.toml index 3a441211e2e..fc734a928f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 } diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 4c86f23edbc..268bbd4ed1b 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -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" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 7323c3c0401..69f0f2136e5 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -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" diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index e2ad645cc41..611679ac5dd 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -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"] @@ -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" diff --git a/lib/vfs/Cargo.toml b/lib/vfs/Cargo.toml index 5317cb6a918..0d43d5b3205 100644 --- a/lib/vfs/Cargo.toml +++ b/lib/vfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-fs" -version = "0.1.0" +version = "0.1.1" description = "Wasmer Virtual FileSystem" authors = ["Wasmer Engineering Team "] license = "MIT" diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index 7614751536b..9b9e2828fc1 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -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"] diff --git a/lib/wasi-experimental-io-devices/Cargo.toml b/lib/wasi-experimental-io-devices/Cargo.toml index f4a4063d97e..36e1d320c92 100644 --- a/lib/wasi-experimental-io-devices/Cargo.toml +++ b/lib/wasi-experimental-io-devices/Cargo.toml @@ -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"] @@ -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" diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index 45d996fa116..70b124dbfb4 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -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"] diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index e6ea4705f9c..63267495874 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -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"] @@ -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 } diff --git a/lib/wasix/wasix-http-client/Cargo.toml b/lib/wasix/wasix-http-client/Cargo.toml index bc89db42e23..85e4dd67853 100644 --- a/lib/wasix/wasix-http-client/Cargo.toml +++ b/lib/wasix/wasix-http-client/Cargo.toml @@ -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 diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 80a12570e5c..f6360d12c02 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -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"