Skip to content

Commit

Permalink
fix(quinn-udp): exclude faulty quinn-udp v0.5.3 (#2003)
Browse files Browse the repository at this point in the history
quinn-udp v0.5.3 introduces a compile time error on Windows. This will be fixed
with quinn-rs/quinn#1932. To unblock CI in the meantime,
exclude v0.5.3.
  • Loading branch information
mxinden authored Jul 22, 2024
1 parent f0bffce commit 75a3243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion neqo-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ neqo-http3 = { path = "./../neqo-http3" }
neqo-transport = { path = "./../neqo-transport" }
neqo-udp = { path = "./../neqo-udp" }
qlog = { workspace = true }
quinn-udp = { version = "0.5.0", default-features = false }
# v0.5.3 has compile time bug on Windows. Fixed with https://github.com/quinn-rs/quinn/pull/1932.
quinn-udp = { version = "<=0.5.2", default-features = false }
regex = { version = "1.9", default-features = false, features = ["unicode-perl"] }
tokio = { version = "1", default-features = false, features = ["net", "time", "macros", "rt", "rt-multi-thread"] }
url = { version = "2.5", default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion neqo-udp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ workspace = true
[dependencies]
log = { workspace = true }
neqo-common = { path = "./../neqo-common" }
quinn-udp = { version = "0.5.0", default-features = false }
# v0.5.3 has compile time bug on Windows. Fixed with https://github.com/quinn-rs/quinn/pull/1932.
quinn-udp = { version = "<=0.5.2", default-features = false }

[package.metadata.cargo-machete]
ignored = ["log"]
Expand Down

0 comments on commit 75a3243

Please sign in to comment.