From 62cd2d4055ae7bb91f525d39f2fe775d1cc85356 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 06:25:02 +0000 Subject: [PATCH] Update rusqlite requirement from 0.38.0 to 0.39.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.38.0...v0.38.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.38.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 dc25948de..cfca5caf2 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.38.0" +rusqlite = "0.39.0" regex = "1.11.1" indicatif = "0.18.3" nix = { version = "0.31.1", features = ["process"] }