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 @@ -33,7 +33,7 @@ jobs:
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: '1.89.0'
toolchain: '1.94.0'
components: rustfmt, clippy
cache: true

Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@ Thumbs.db

# Tauri
**/gen/

# Examples
examples/**/Cargo.lock
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.2.0"
description = "A Tauri plugin for SQLite with connection pooling, builder-pattern queries, transactions, and reactive change notifications"
license = "MIT"
edition = "2024"
rust-version = "1.89"
rust-version = "1.94.0"
links = "tauri-plugin-sqlite"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ See individual crate READMEs for detailed API documentation.

## Installation

_Requires Rust **1.77.2** or later_
_Requires Rust **1.94.0** or later_

### Rust

Expand Down
2 changes: 1 addition & 1 deletion crates/sqlx-sqlite-conn-mgr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Wraps SQLx for SQLite, enforcing pragmatic connection policies fo
authors = ["Jeremy Thomerson"]
license = "MIT"
edition = "2024"
rust-version = "1.89"
rust-version = "1.94.0"
repository = "https://github.com/silvermine/tauri-plugin-sqlite"
readme = "README.md"
keywords = ["sqlite", "sqlx", "database", "connection-pool", "async"]
Expand Down
2 changes: 1 addition & 1 deletion crates/sqlx-sqlite-observer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "sqlx-sqlite-observer"
version = "0.8.7"
license = "MIT"
edition = "2024"
rust-version = "1.89"
rust-version = "1.94.0"
authors = ["Jeremy Thomerson"]
description = "Reactive change notifications for SQLite databases using sqlx"
repository = "https://github.com/silvermine/tauri-plugin-sqlite"
Expand Down
2 changes: 1 addition & 1 deletion crates/sqlx-sqlite-toolkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "sqlx-sqlite-toolkit"
version = "0.8.7"
license = "MIT"
edition = "2024"
rust-version = "1.89"
rust-version = "1.94.0"
authors = ["Jeremy Thomerson"]
description = "High-level SQLite API built on sqlx with builder-pattern queries, transactions, and JSON decoding"
repository = "https://github.com/silvermine/tauri-plugin-sqlite"
Expand Down
Loading
Loading