From a6a8b7c68d74de5514d0953182f8cf2fbcb7eac7 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sat, 7 Feb 2026 09:13:10 -0500 Subject: [PATCH] Update MSRV to support newer versions of time (#171) --- .github/workflows/rust-tests.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/rust-tests.yml index 4b51c52..7972a27 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/rust-tests.yml @@ -15,7 +15,7 @@ jobs: - "17" rust: # MSRV - - "1.85.0" + - "1.88.0" - "stable" runs-on: ubuntu-latest diff --git a/Cargo.toml b/Cargo.toml index d3eb394..669d8a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ "sqlite", "postgres", ] -rust-version = "1.85.0" # MSRV +rust-version = "1.88.0" # MSRV [workspace.dependencies] async-trait = "0.1.88"