From 2f2c94a539d41a6c87d5609b42f9798367b4b2ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 May 2025 17:03:36 +0000 Subject: [PATCH] Update nix requirement from 0.29.0 to 0.30.1 in /crates/cli Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.29.0...v0.30.1) --- updated-dependencies: - dependency-name: nix dependency-version: 0.30.1 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..c06961b67 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -12,7 +12,7 @@ tokio = { version = "1.43", features = ["full", "rt-multi-thread"] } rusqlite = "0.33.0" regex = "1.11.1" indicatif = "0.17.9" -nix = { version = "0.29.0", features = ["process"] } +nix = { version = "0.30.1", features = ["process"] } serde_json = "1.0.135" serde = { version = "1.0", features = ["derive"] } libpkgx = { version = "0.7.0", path = "../lib" }