From ab7ea9a49dc0b29e361636595e2e6e5c34f5548f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 13:50:29 +0000 Subject: [PATCH] Update rusqlite requirement from 0.33.0 to 0.34.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.34.0) --- updated-dependencies: - dependency-name: rusqlite 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 07916d2e3..388c65906 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.34.0" regex = "1.11.1" reqwest = { version = "0.12", features = ["stream", "blocking"] } async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] }