build(rust): depend on quinn-udp's main branch (#8763)

The latest `main` of `quinn-udp` includes important patches that will
surface errors around dropped packets.
This commit is contained in:
Thomas Eizinger
2025-04-13 11:57:47 +10:00
committed by GitHub
parent e0f94824df
commit 574bd75ae5
2 changed files with 3 additions and 3 deletions

5
rust/Cargo.lock generated
View File

@@ -5344,9 +5344,8 @@ dependencies = [
[[package]]
name = "quinn-udp"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
version = "0.5.11"
source = "git+https://github.com/quinn-rs/quinn?branch=main#8f1a529837c7c99741d4097446a85e4482bf65b3"
dependencies = [
"cfg_aliases",
"libc",

View File

@@ -209,6 +209,7 @@ ip_network = { git = "https://github.com/JakubOnderka/ip_network", branch = "mas
ip_network_table = { git = "https://github.com/edmonds/ip_network_table", branch = "some-useful-traits" } # For `Debug` and `Clone`
tracing-stackdriver = { git = "https://github.com/thomaseizinger/tracing-stackdriver", branch = "bump-otel-0.26" } # Waiting for release.
softbuffer = { git = "https://github.com/rust-windowing/softbuffer" } # Waiting for release.
quinn-udp = { git = "https://github.com/quinn-rs/quinn", branch = "main" } # Waiting for release.
# Enforce `tracing-macros` to have released `tracing` version.
[patch.'https://github.com/tokio-rs/tracing']