From 071e7740aa10901a80b973df06c66bf7a978b098 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 20:27:02 +0000 Subject: [PATCH 1/2] Update rusqlite requirement from 0.39.0 to 0.40.0 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.39.0...v0.40.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.40.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3774e3e..43d55ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ window = ["rusqlite/window"] crossbeam-channel = { version = "0.5" } futures-channel = { version = "0.3" } futures-util = { version = "0.3" } -rusqlite = { version = "0.39.0" } +rusqlite = { version = "0.40.0" } [dev-dependencies] paste = { version = "1.0.12" } From 5997d10f0304d14b2a6f331d64cd2f99f3013187 Mon Sep 17 00:00:00 2001 From: Ryan Fowler Date: Tue, 26 May 2026 14:58:32 -0700 Subject: [PATCH 2/2] Raise MSRV to 1.95.0 --- .github/workflows/ci.yml | 2 +- AGENTS.md | 2 +- Cargo.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbece41..0faeeee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [main] env: - RUST_VERSION: "1.92.0" + RUST_VERSION: "1.95.0" jobs: build: diff --git a/AGENTS.md b/AGENTS.md index 36b7b97..868fb53 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -20,7 +20,7 @@ To run a single test: cargo test # e.g., cargo test test_blocking_client ``` -The minimum supported Rust version is 1.92.0. +The minimum supported Rust version is 1.95.0. ## Architecture diff --git a/Cargo.toml b/Cargo.toml index 43d55ef..ddcd712 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "async-sqlite" version = "0.5.7" authors = ["Ryan Fowler"] edition = "2021" +rust-version = "1.95.0" license = "MIT" description = "A library for working with sqlite asynchronously" repository = "https://github.com/ryanfowler/async-sqlite"