Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,15 @@ xtask = "run --manifest-path xtask/Cargo.toml --"
# via xtask (disable with --no-simd). Not set here because rustflags in
# config.toml overrides (doesn't append to) env RUSTFLAGS, and CI sets
# RUSTFLAGS=-Dwarnings globally.

# crates.io dependency downloads intermittently fail on CI runners with
# "[16] Error in the HTTP2 framing layer" (criterion's transitive deps —
# cast/alloca/oorandom/itertools — and others), reddening otherwise-passing
# jobs. Force HTTP/1.1 (sidesteps the HTTP/2 multiplexing fault) and retry
# transient network failures so dependency fetches are reliable. Downloads
# only matter on a cold cache (mostly CI), so the local-dev cost is negligible.
[http]
multiplexing = false

[net]
retry = 10
Loading