From 9c8bff3b88e639494b7a63cb21090ccfb55b9b17 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 06:24:59 +0000 Subject: [PATCH] Update rusqlite requirement from 0.33.0 to 0.37.0 in /crates/cli 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.33.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.33.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ad3b6ab27..221973154 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/pkgxdev/pkgx" [dependencies] tokio = { version = "1.43", features = ["full", "rt-multi-thread"] } -rusqlite = "0.33.0" +rusqlite = "0.37.0" regex = "1.11.1" indicatif = "0.17.9" nix = { version = "0.29.0", features = ["process"] }