Skip to content

Commit c6a0d4c

Browse files
authored
Cargo: temporariliy pin boring-sys to 4.19
1 parent 2ca4678 commit c6a0d4c

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ publish = false
3434
[workspace.dependencies]
3535
anyhow = { version = "1" }
3636
assert_matches = { version = "1" }
37-
boring = { version = "4.3" }
37+
# pin boring things as temporary workaround for quiche_windows
38+
# (i686-pc-windows-gnu) failures observed in boring-sys 4.20
39+
boring = { version = "=4.19" }
40+
boring-sys = { version = "=4.19" }
3841
buffer-pool = { version = "0.1.0", path = "./buffer-pool" }
3942
crossbeam = { version = "0.8.1", default-features = false }
4043
dashmap = { version = "6" }

quiche/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ windows-sys = { version = "0.59", features = [
8888
"Win32_Networking_WinSock",
8989
"Win32_Security_Cryptography",
9090
] }
91+
# temporary workaround for quiche_windows
92+
# (i686-pc-windows-gnu) failures observed in boring-sys 4.20
93+
boring-sys = { workspace = true, optional = true }
9194

9295
[dev-dependencies]
9396
mio = { workspace = true, features = ["net", "os-poll"] }

0 commit comments

Comments
 (0)