From af1adc0050e8fd42306b7f90c18424d60e9c8e0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 07:35:09 +0000 Subject: [PATCH] Update rusqlite requirement from 0.33.0 to 0.36.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.33.0...v0.36.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.36.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 d7ec24e0a..68b733e75 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.33.0" +rusqlite = "0.36.0" regex = "1.11.1" reqwest = { version = "0.12", features = ["stream", "blocking"] } async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] }