diff --git a/orch/Cargo.lock b/orch/Cargo.lock index bf61914..d652335 100644 --- a/orch/Cargo.lock +++ b/orch/Cargo.lock @@ -220,7 +220,7 @@ dependencies = [ "sha1 0.10.7", "sync_wrapper", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "tower", "tower-layer", "tower-service", @@ -3047,7 +3047,7 @@ dependencies = [ "tarit-vmm-client", "thiserror", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "toml", "tower", "tower-http", @@ -3215,6 +3215,18 @@ name = "tokio-tungstenite" version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.29.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17a073bfed563fa236697a068031408a93cd9522e08abf9933ead3e73411bd71" dependencies = [ "futures-util", "log", @@ -3222,7 +3234,7 @@ dependencies = [ "rustls-pki-types", "tokio", "tokio-rustls", - "tungstenite", + "tungstenite 0.30.0", "webpki-roots 0.26.11", ] @@ -3407,9 +3419,25 @@ dependencies = [ "httparse", "log", "rand 0.9.5", + "sha1 0.10.7", + "thiserror", +] + +[[package]] +name = "tungstenite" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48ac77174b19c110a50ab2128b24215ac9cb40e0e12e093fb602d175c569d22" +dependencies = [ + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand 0.10.2", "rustls", "rustls-pki-types", - "sha1 0.10.7", + "sha1 0.11.0", "thiserror", ] diff --git a/orch/crates/taritd/Cargo.toml b/orch/crates/taritd/Cargo.toml index 9943f51..aa2d6dc 100644 --- a/orch/crates/taritd/Cargo.toml +++ b/orch/crates/taritd/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { workspace = true } sha2 = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } -tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] } +tokio-tungstenite = { version = "0.30", features = ["rustls-tls-webpki-roots"] } toml = "0.8" tower-http = { workspace = true } tracing = { workspace = true }