From e9977660c04b8c86275cb0ccc2f9377212bbd0a7 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Fri, 18 Aug 2023 09:49:30 +0200 Subject: [PATCH] Bumped virtual-net crate to 0.5.0 --- Cargo.lock | 2 +- lib/cli/Cargo.toml | 2 +- lib/virtual-net/Cargo.toml | 2 +- lib/wasi-web/Cargo.lock | 2 +- lib/wasi-web/Cargo.toml | 2 +- lib/wasix/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53c0ea9f2e0..e4c004cc02e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5053,7 +5053,7 @@ dependencies = [ [[package]] name = "virtual-net" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "async-trait", diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 13f7227d133..329bd9a23a5 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -60,7 +60,7 @@ wasmer-object = { version = "=4.1.1", path = "../object", optional = true } virtual-fs = { version = "0.8.0", path = "../virtual-fs", default-features = false, features = [ "host-fs", ] } -virtual-net = { version = "0.4.0", path = "../virtual-net" } +virtual-net = { version = "0.5.0", path = "../virtual-net" } # Wasmer-owned dependencies. webc = { workspace = true } diff --git a/lib/virtual-net/Cargo.toml b/lib/virtual-net/Cargo.toml index 9a5c017d1ce..9f4065a3dda 100644 --- a/lib/virtual-net/Cargo.toml +++ b/lib/virtual-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-net" -version = "0.4.0" +version = "0.5.0" description = "Wasmer Virtual Networking" authors.workspace = true edition.workspace = true diff --git a/lib/wasi-web/Cargo.lock b/lib/wasi-web/Cargo.lock index 0737fa9a6a6..9f225723fd1 100644 --- a/lib/wasi-web/Cargo.lock +++ b/lib/wasi-web/Cargo.lock @@ -2143,7 +2143,7 @@ dependencies = [ [[package]] name = "virtual-net" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "async-trait", diff --git a/lib/wasi-web/Cargo.toml b/lib/wasi-web/Cargo.toml index dbb2d49a7af..25f5ac9af15 100644 --- a/lib/wasi-web/Cargo.toml +++ b/lib/wasi-web/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.67" [dependencies] wasmer = { path = "../api", default_features = false, features = [ "js-default" ] } wasmer-wasix = { path = "../wasix", version = "0.11.0", default-features = false, features = [ "js-default" ] } -virtual-net = { path = "../virtual-net", default-features = false, features = [ "remote" ] } +virtual-net = { path = "../virtual-net", version = "0.5.0", default-features = false, features = [ "remote" ] } #wasm-bindgen = { version = "0.2", features = [ "nightly", "serde-serialize" ] } wasm-bindgen = { version = "0.2", features = [ "serde-serialize" ] } wasm-bindgen-futures = "0.4" diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 52dda742cb8..7c9b529cc6e 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -22,7 +22,7 @@ wasmer-types = { path = "../types", version = "=4.1.1", default-features = false wasmer = { path = "../api", version = "=4.1.1", default-features = false, features = ["wat", "js-serializable-module"] } virtual-mio = { path = "../virtual-io", version = "0.1.0", default-features = false } virtual-fs = { path = "../virtual-fs", version = "0.8.0", default-features = false, features = ["webc-fs"] } -virtual-net = { path = "../virtual-net", version = "0.4.0", default-features = false } +virtual-net = { path = "../virtual-net", version = "0.5.0", default-features = false } wasmer-emscripten = { path = "../emscripten", version = "=4.1.1", optional = true } typetag = { version = "0.1", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] }