From 36f8f429c53606cf3f7e317454f4db83e947fa9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 15:04:12 +0000 Subject: [PATCH] chore(deps):(deps): update rusqlite requirement from 0.31 to 0.40 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.31.0...v0.40.1) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.40.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 639f0da..14b9479 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["rlib"] [dependencies] pdfium-render = { version = "0.8", features = ["sync"] } -rusqlite = { version = "0.31", features = ["chrono", "bundled"] } +rusqlite = { version = "0.40", features = ["chrono", "bundled"] } thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"