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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [main]

env:
RUST_VERSION: "1.92.0"
RUST_VERSION: "1.95.0"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To run a single test:
cargo test <test_name> # 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

Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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" }
Expand Down
Loading