bumped deps

This commit is contained in:
Nickiel12 2024-09-18 12:11:30 -07:00
parent 64c840a2fd
commit 64458305ca
2 changed files with 42 additions and 13 deletions

36
Cargo.lock generated
View file

@ -2219,7 +2219,19 @@ dependencies = [
"futures-util", "futures-util",
"log", "log",
"tokio", "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]] [[package]]
@ -2344,6 +2356,24 @@ dependencies = [
"utf-8", "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]] [[package]]
name = "turn" name = "turn"
version = "0.8.0" version = "0.8.0"
@ -2473,7 +2503,7 @@ dependencies = [
"serde_json", "serde_json",
"snafu", "snafu",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite 0.24.0",
"tokio-util", "tokio-util",
"toml", "toml",
"tracing", "tracing",
@ -2494,7 +2524,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"tokio", "tokio",
"tokio-tungstenite", "tokio-tungstenite 0.23.1",
"tracing", "tracing",
"webrtc", "webrtc",
] ]

View file

@ -6,24 +6,23 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
async-channel = "2.3.1"
bincode = "1.3.3"
config = "0.14.0" config = "0.14.0"
futures-util = "0.3.30"
gstreamer = { version = "0.23.0", features = ["v1_22"] } gstreamer = { version = "0.23.0", features = ["v1_22"] }
gstreamer-app = { version = "0.23.0", features = ["v1_22"] } gstreamer-app = { version = "0.23.0", features = ["v1_22"] }
log = "0.4.22" log = "0.4.22"
serde = { version = "1.0.204", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.122" serde_json = "1.0"
snafu = "0.8.4" snafu = "0.8.4"
tokio = { version = "1.39.2", features = ["signal"] } tokio = { version = "1.40", features = ["signal"] }
tokio-tungstenite = "0.23.1" tokio-util = "0.7.12"
tokio-tungstenite = "0.24"
toml = "0.8.19" toml = "0.8.19"
tracing = "0.1.40" tracing = "0.1.40"
tracing-subscriber = "0.3.18" tracing-subscriber = "0.3.18"
uuid = "1.10.0"
webrtc = "0.11.0" webrtc = "0.11.0"
vcs-common = { git = "https://git.nickiel.net/VCC/vcs-common.git", branch = "main" } 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"