diff --git a/Cargo.lock b/Cargo.lock index e2bc16b..4ea740a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ "sha1 0.10.7", "sync_wrapper", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "tower", "tower-layer", "tower-service", @@ -540,6 +540,12 @@ dependencies = [ "windows-sys 0.61.2", ] +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "core-foundation" version = "0.10.1" @@ -765,6 +771,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" dependencies = [ "block-buffer 0.12.1", + "const-oid", "crypto-common 0.2.2", "ctutils", ] @@ -2225,7 +2232,7 @@ dependencies = [ "sqlx", "thiserror", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tokio-util", "tower-http 0.7.0", "tracing", @@ -3768,7 +3775,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "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", + "tokio", + "tungstenite 0.30.0", ] [[package]] @@ -4003,6 +4022,22 @@ dependencies = [ "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", + "sha1 0.11.0", + "thiserror", +] + [[package]] name = "typenum" version = "1.20.1" diff --git a/opsqueue/Cargo.toml b/opsqueue/Cargo.toml index 2d69b21..59e3fba 100644 --- a/opsqueue/Cargo.toml +++ b/opsqueue/Cargo.toml @@ -41,7 +41,7 @@ ciborium = "0.2.2" http = "1.4.0" object_store = {version = "0.14.0", features = ["gcp", "http"]} snowflaked = {version = "1.0.3", features = ["sync"] } -tokio-tungstenite = {version = "0.29.0", optional = true} +tokio-tungstenite = {version = "0.30.0", optional = true} axum = { version = "0.8.9", features = ["ws", "macros"], optional = true } reqwest = { version = "0.13.2", default-features = false, features = ["json"], optional = true } url = {version = "2.5.2"}