From 31f35fd895258e538fbcb6081e1a12b96ae07277 Mon Sep 17 00:00:00 2001 From: Valerio Date: Mon, 30 Mar 2026 11:52:35 +0200 Subject: [PATCH] ci: fix ambiguous reqwest version in dependency sync Core has reqwest 0.12 (direct) and 0.13 (via webclaw-tls patch). Disambiguate with version specs. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/deps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml index 5566d60..29e851b 100644 --- a/.github/workflows/deps.yml +++ b/.github/workflows/deps.yml @@ -22,7 +22,7 @@ jobs: - name: Update webclaw-tls crates run: | - cargo update -p webclaw-http -p rustls -p h2 -p hyper -p hyper-util -p reqwest 2>&1 + cargo update -p webclaw-http -p rustls -p 'h2@0.4' -p 'hyper@1' -p 'hyper-util@0.1' -p 'reqwest@0.13' 2>&1 - name: Check for changes id: diff