From 64458305caf570c089d2b8f0aef5e37163d59195 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Wed, 18 Sep 2024 12:11:30 -0700 Subject: [PATCH] bumped deps --- Cargo.lock | 36 +++++++++++++++++++++++++++++++++--- Cargo.toml | 19 +++++++++---------- 2 files changed, 42 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0b292d..97f044d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2219,7 +2219,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.23.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.24.0", ] [[package]] @@ -2344,6 +2356,24 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand", + "sha1", + "thiserror", + "utf-8", +] + [[package]] name = "turn" version = "0.8.0" @@ -2473,7 +2503,7 @@ dependencies = [ "serde_json", "snafu", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.24.0", "tokio-util", "toml", "tracing", @@ -2494,7 +2524,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.23.1", "tracing", "webrtc", ] diff --git a/Cargo.toml b/Cargo.toml index 808114c..535e815 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,24 +6,23 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +async-channel = "2.3.1" +bincode = "1.3.3" config = "0.14.0" - +futures-util = "0.3.30" gstreamer = { version = "0.23.0", features = ["v1_22"] } gstreamer-app = { version = "0.23.0", features = ["v1_22"] } log = "0.4.22" -serde = { version = "1.0.204", features = ["derive"] } -serde_json = "1.0.122" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" snafu = "0.8.4" -tokio = { version = "1.39.2", features = ["signal"] } -tokio-tungstenite = "0.23.1" +tokio = { version = "1.40", features = ["signal"] } +tokio-util = "0.7.12" +tokio-tungstenite = "0.24" toml = "0.8.19" tracing = "0.1.40" tracing-subscriber = "0.3.18" +uuid = "1.10.0" webrtc = "0.11.0" vcs-common = { git = "https://git.nickiel.net/VCC/vcs-common.git", branch = "main" } -async-channel = "2.3.1" -futures-util = "0.3.30" -bincode = "1.3.3" -tokio-util = "0.7.12" -uuid = "1.10.0"