From 35844c590303f6a5d0e6f8d14b0e35f01d87a369 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Sat, 14 Feb 2026 13:03:38 -0500 Subject: [PATCH 1/2] internal: bump rust version to 1.93 --- .github/workflows/rust.yml | 8 ++++---- Cargo.toml | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 04a8d9a1..77a96d30 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -93,7 +93,7 @@ jobs: - name: Install Toolchain uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable with: - toolchain: 1.90.0 + toolchain: 1.93 targets: ${{ matrix.target }} - name: Cache @@ -291,7 +291,7 @@ jobs: - name: Install Toolchain uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable with: - toolchain: 1.90.0 + toolchain: 1.93 components: clippy, rustfmt - name: Cache @@ -316,7 +316,7 @@ jobs: - name: Install Toolchain uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable with: - toolchain: 1.90.0 + toolchain: 1.93 - name: Cache uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # pin@v2 @@ -348,7 +348,7 @@ jobs: - name: Install Toolchain uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable with: - toolchain: 1.90.0 + toolchain: 1.93 - name: Cache uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # pin@v2 diff --git a/Cargo.toml b/Cargo.toml index 1b956f47..678a7d0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] version = "2.40.1" edition = "2024" -rust-version = "1.90.0" +rust-version = "1.93" authors = ["Squawk Team & Contributors"] license = "Apache-2.0 OR MIT" description = "Linter for Postgres migrations & SQL" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 5ed3110d..349409c6 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "aarch64-apple-darwin"] -channel = "1.90.0" +channel = "1.93" From 3dcc0ec5a7efe898c4cd0725492307b8f56fd71e Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Sat, 14 Feb 2026 13:26:18 -0500 Subject: [PATCH 2/2] fix --- crates/xtask/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/xtask/src/main.rs b/crates/xtask/src/main.rs index 973f74ef..fe172ed8 100644 --- a/crates/xtask/src/main.rs +++ b/crates/xtask/src/main.rs @@ -1,6 +1,6 @@ use anyhow::Result; // see: https://github.com/matklad/cargo-xtask -use clap::{Args, Parser, Subcommand, arg}; +use clap::{Args, Parser, Subcommand}; use codegen::codegen; use new_rule::new_lint; use sync_builtins::sync_builtins;