From 5faa99161504c37b4054bb125e7ad42f48cda80e Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 1 Jul 2026 09:28:50 +0000 Subject: [PATCH] Add release metadata and MSRV CI verification Co-authored-by: Aanish Bhirud --- .github/workflows/ci.yml | 12 ++++++++++++ Cargo.toml | 5 +++++ 2 files changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a849777..26070c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,18 @@ jobs: - name: Test run: cargo test --locked --verbose + msrv: + name: test (msrv 1.85.0) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@1.85.0 + - uses: Swatinem/rust-cache@v2 + - name: Build + run: cargo build --locked --verbose + - name: Test + run: cargo test --locked --verbose + lint: name: fmt & clippy runs-on: ubuntu-latest diff --git a/Cargo.toml b/Cargo.toml index ee9ce33..25344a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,11 @@ edition = "2024" rust-version = "1.85" license = "MIT" description = "QuickRunner (qr) is a blazing-fast, AI-augmented developer shell helper." +repository = "https://github.com/baanish/quick-runner" +homepage = "https://github.com/baanish/quick-runner" +readme = "README.md" +keywords = ["cli", "developer-tools", "shell", "ai", "rust"] +categories = ["command-line-utilities", "development-tools"] [[bin]] name = "qr"