Skip to content

Commit

Permalink
Bumped virtual-net crate to 0.5.0 (#4163)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb authored Aug 18, 2023
1 parent cb39704 commit e007a45
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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 lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion lib/virtual-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi-web/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 lib/wasi-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/wasix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit e007a45

Please sign in to comment.