Update etherparse and async-tungstenite dependencies

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1691>
This commit is contained in:
Sebastian Dröge 2024-08-06 09:00:32 +03:00
parent 184778d087
commit b83b6031e5
4 changed files with 9 additions and 9 deletions

12
Cargo.lock generated
View file

@ -264,9 +264,9 @@ dependencies = [
[[package]]
name = "async-tungstenite"
version = "0.26.2"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb786dab48e539c5f17b23bac20d812ac027c01732ed7c7b58850c69a684e46c"
checksum = "c5359381fd414fbdb272c48f2111c16cb0bb3447bfacd59311ff3736da9f6664"
dependencies = [
"futures-io",
"futures-util",
@ -1687,9 +1687,9 @@ dependencies = [
[[package]]
name = "etherparse"
version = "0.14.3"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "095ab548cf452be5813424558a18af88f0a620d0f4a3d8793aa09311a3b6fa5f"
checksum = "21696e6dfe1057a166a042c6d27b89a46aad2ee1003e6e1e03c49d54fd3270d7"
dependencies = [
"arrayvec",
]
@ -4314,7 +4314,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.6",
]
[[package]]
@ -5452,7 +5452,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
dependencies = [
"bytes",
"heck 0.4.1",
"heck 0.5.0",
"itertools 0.12.1",
"log",
"multimap 0.10.0",

View file

@ -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.26", features = ["tokio-runtime", "tokio-native-tls", "url"] }
async-tungstenite = { version = "0.27", features = ["tokio-runtime", "tokio-native-tls", "url"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
fastrand = "2.0"

View file

@ -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.26", features = ["tokio-runtime", "tokio-native-tls"] }
async-tungstenite = { version = "0.27", features = ["tokio-runtime", "tokio-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }

View file

@ -15,7 +15,7 @@ regex = "1"
once_cell.workspace = true
atomic_refcell = "0.1"
pcap-file = "1.1.1"
etherparse = "0.14.0"
etherparse = "0.15.0"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3"