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 3774e3e..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" @@ -46,7 +47,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" }