From bcaaeaacd13d58f02e08af73e803acf26674fb85 Mon Sep 17 00:00:00 2001 From: jupblb Date: Wed, 20 May 2026 10:05:03 +0200 Subject: [PATCH 1/2] ci: drop tokio from index matrix Remove tokio from the CI index matrix and the now-unused tokio-specific extractVersion rule from Renovate. --- .github/renovate.json | 4 ---- .github/workflows/ci.yaml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 8cea826..55db6df 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -16,10 +16,6 @@ "matchManagers": ["custom.regex"], "matchFileNames": [".github/workflows/ci.yaml"], "schedule": ["* * 1 */3 *"] - }, - { - "matchPackageNames": ["tokio-rs/tokio"], - "extractVersion": "^tokio-(?\\d+\\.\\d+\\.\\d+)$" } ] } diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 26c6b77..dd0f444 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,10 +61,6 @@ jobs: repo: BurntSushi/ripgrep ref: 15.1.0 expect_file: crates/core/main.rs - - name: tokio - repo: tokio-rs/tokio - ref: tokio-1.52.3 - expect_file: tokio/src/lib.rs - name: serde repo: serde-rs/serde ref: v1.0.228 From ae1fbc8b7e9bca69a964b9e06895fd8dfe036206 Mon Sep 17 00:00:00 2001 From: jupblb Date: Wed, 20 May 2026 10:25:41 +0200 Subject: [PATCH 2/2] ci: add hyper to index matrix Replaces tokio's role as a large async/trait-heavy Rust workspace. Single-crate repo with standard semver tags, so no Renovate extractVersion rule is needed. --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dd0f444..bfe0ecb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,6 +61,10 @@ jobs: repo: BurntSushi/ripgrep ref: 15.1.0 expect_file: crates/core/main.rs + - name: hyper + repo: hyperium/hyper + ref: v1.9.0 + expect_file: src/lib.rs - name: serde repo: serde-rs/serde ref: v1.0.228