From 7def161f8f5bae825d3dfdc2ca2eb1b115b8cd13 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Sun, 25 May 2025 10:31:10 +0200 Subject: [PATCH] Bump minimal supported rust version to 1.82 --- .github/workflows/ci.yml | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8990404..7fc8f0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -232,11 +232,11 @@ jobs: - name: Check formating run: cargo +stable fmt --all -- --check minimal_rust_version: - name: Check Minimal supported rust version (1.78.0) + name: Check Minimal supported rust version (1.82.0) runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.78.0 + - uses: dtolnay/rust-toolchain@1.82.0 - uses: dtolnay/rust-toolchain@nightly - uses: taiki-e/install-action@cargo-hack - uses: taiki-e/install-action@cargo-minimal-versions @@ -245,4 +245,4 @@ jobs: # has broken min-version dependencies # cannot test sqlite yet as that crate # as broken min-version dependencies as well - run: cargo +1.78.0 minimal-versions check -p diesel-async --features "postgres bb8 deadpool mobc" + run: cargo +1.82.0 minimal-versions check -p diesel-async --features "postgres bb8 deadpool mobc" diff --git a/Cargo.toml b/Cargo.toml index 91c5265..291ea44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/weiznich/diesel_async" keywords = ["orm", "database", "sql", "async"] categories = ["database"] description = "An async extension for Diesel the safe, extensible ORM and Query Builder" -rust-version = "1.78.0" +rust-version = "1.82.0" [dependencies] futures-channel = { version = "0.3.17", default-features = false, features = [