diff --git a/Cargo.lock b/Cargo.lock index 5d91a674..f9c6f716 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -270,9 +270,9 @@ dependencies = [ [[package]] name = "async-tungstenite" -version = "0.27.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5359381fd414fbdb272c48f2111c16cb0bb3447bfacd59311ff3736da9f6664" +checksum = "90e661b6cb0a6eb34d02c520b052daa3aa9ac0cc02495c9d066bbce13ead132b" dependencies = [ "futures-io", "futures-util", @@ -281,7 +281,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-native-tls", - "tungstenite 0.23.0", + "tungstenite 0.24.0", ] [[package]] @@ -7268,9 +7268,9 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" dependencies = [ "byteorder", "bytes", diff --git a/audio/speechmatics/Cargo.toml b/audio/speechmatics/Cargo.toml index 9fd5a258..676d0c9e 100644 --- a/audio/speechmatics/Cargo.toml +++ b/audio/speechmatics/Cargo.toml @@ -14,7 +14,7 @@ gst.workspace = true gst-base.workspace = true gst-audio = { workspace = true, features = ["v1_16"] } tokio = { version = "1", features = [ "full" ] } -async-tungstenite = { version = "0.27", features = ["tokio", "tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.28", features = ["tokio", "tokio-runtime", "tokio-native-tls"] } once_cell.workspace = true serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index 088f667c..8bf93fde 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -29,7 +29,7 @@ itertools = "0.12" tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "time"] } tokio-native-tls = "0.3.0" tokio-stream = "0.1.11" -async-tungstenite = { version = "0.27", features = ["tokio-runtime", "tokio-native-tls", "url"] } +async-tungstenite = { version = "0.28", features = ["tokio-runtime", "tokio-native-tls", "url"] } serde = { version = "1", features = ["derive"] } serde_json = "1" fastrand = "2.0" diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index e1d332dc..78a6e2c0 100644 --- a/net/webrtc/signalling/Cargo.toml +++ b/net/webrtc/signalling/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true anyhow = "1" tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread", "time"] } tokio-native-tls = "0.3.0" -async-tungstenite = { version = "0.27", features = ["tokio-runtime", "tokio-native-tls"] } +async-tungstenite = { version = "0.28", features = ["tokio-runtime", "tokio-native-tls"] } serde = { version = "1", features = ["derive"] } serde_json = "1" clap = { version = "4", features = ["derive"] }