Skip to content

Commit

Permalink
Updated tugstsenite (#4236)
Browse files Browse the repository at this point in the history
* Updated tugstsenite

* Create a virtual-net crate v0.6.1 with updated tungstenite crates

* Updated wasi-web Cargo.toml

* Bumped wasmer-deploy-cli

* Bumped wasmer-deploy-cli again
  • Loading branch information
ptitSeb committed Oct 2, 2023
1 parent 659f91f commit b310028
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 37 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ wasmer-object = { version = "=4.2.1", path = "../object", optional = true }
virtual-fs = { version = "0.9.0", path = "../virtual-fs", default-features = false, features = [
"host-fs",
] }
virtual-net = { version = "0.6.0", path = "../virtual-net" }
virtual-net = { version = "0.6.1", path = "../virtual-net" }

# Wasmer-owned dependencies.
webc = { workspace = true }
wasmer-deploy-cli = { version = "=0.1.25", default-features = false }
wasmer-deploy-cli = { version = "=0.1.28", default-features = false }

# Third-party dependencies.

Expand Down
6 changes: 3 additions & 3 deletions 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.6.0"
version = "0.6.1"
description = "Wasmer Virtual Networking"
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -28,9 +28,9 @@ futures-util = { version = "0.3" }
anyhow = "1.0"
tokio-serde = { version = "0.8", features = [ "bincode" ], optional = true }
tokio-util = { version = "0.6", features = ["codec"], optional = true }
hyper-tungstenite = { version = "0.10", optional = true }
hyper-tungstenite = { version = "0.11", optional = true }
hyper = { version = "0.14", optional = true }
tokio-tungstenite = { version = "0.19", optional = true }
tokio-tungstenite = { version = "0.20", optional = true }

[dev-dependencies]
tokio = { version = "1", default_features = false, features = [ "macros" ] }
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.70"
[dependencies]
wasmer = { path = "../api", default_features = false, features = [ "js-default" ] }
wasmer-wasix = { path = "../wasix", version = "0.14.0", default-features = false, features = [ "js-default" ] }
virtual-net = { path = "../virtual-net", version = "0.6.0", default-features = false, features = [ "remote" ] }
virtual-net = { path = "../virtual-net", version = "0.6.1", 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.2.1", default-features = false
wasmer = { path = "../api", version = "=4.2.1", default-features = false, features = ["wat", "js-serializable-module"] }
virtual-mio = { path = "../virtual-io", version = "0.3.0", default-features = false }
virtual-fs = { path = "../virtual-fs", version = "0.9.0", default-features = false, features = ["webc-fs"] }
virtual-net = { path = "../virtual-net", version = "0.6.0", default-features = false }
virtual-net = { path = "../virtual-net", version = "0.6.1", default-features = false }
wasmer-emscripten = { path = "../emscripten", version = "=4.2.1", optional = true }
typetag = { version = "0.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand Down

0 comments on commit b310028

Please sign in to comment.