From c74c1fcfa1acae27908876d3fd062ff249c663b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 08:02:15 +0000 Subject: [PATCH] Update console requirement from 0.15 to 0.16 in /crates/cli Updates the requirements on [console](https://github.com/console-rs/console) to permit the latest version. - [Release notes](https://github.com/console-rs/console/releases) - [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md) - [Commits](https://github.com/console-rs/console/compare/0.15.0...0.16.0) --- updated-dependencies: - dependency-name: console dependency-version: 0.16.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..157d1544c 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -16,7 +16,7 @@ nix = { version = "0.29.0", features = ["process"] } serde_json = "1.0.135" serde = { version = "1.0", features = ["derive"] } libpkgx = { version = "0.7.0", path = "../lib" } -console = { version = "0.15", default-features = false, features = [ +console = { version = "0.16", default-features = false, features = [ "ansi-parsing", ] }