From 21a52b3b6ff7bc79092bfdfcdbbc51a3327c2140 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 06:57:39 +0000 Subject: [PATCH 1/2] Update rusqlite requirement from 0.37.0 to 0.38.0 in /crates/lib 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.37.0...v0.38.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.38.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index f2791ac18..60c280ac3 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1.43", features = ["full", "rt-multi-thread"] } tokio-stream = "0.1" strum = "0.27" strum_macros = "0.27" -rusqlite = "0.37.0" +rusqlite = "0.38.0" regex = "1.11.1" reqwest = { version = "0.13", features = ["stream", "blocking"] } async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] } From d7bd8666cbbcc08f3ad1cfa5bf0d3607fab38304 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Mon, 9 Feb 2026 10:34:54 -0500 Subject: [PATCH 2/2] Update rusqlite dependency to version 0.38.0 --- crates/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 60c280ac3..75b39d63c 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -33,4 +33,4 @@ fs2 = "0.4.3" tempfile = "3.16.0" [target.'cfg(not(target_os = "macos"))'.dependencies] -rusqlite = { version = "0.37.0", features = ["bundled"] } +rusqlite = { version = "0.38.0", features = ["bundled"] }