Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/xtask/src/main.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -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"
Loading