From 0207985a00da9d193f8ad6e06470acf3a59f1444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 07:28:49 +0000 Subject: [PATCH] chore(deps): bump colored from 2.2.0 to 3.1.1 Bumps [colored](https://github.com/mackwic/colored) from 2.2.0 to 3.1.1. - [Release notes](https://github.com/mackwic/colored/releases) - [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md) - [Commits](https://github.com/mackwic/colored/compare/v2.2.0...v3.1.1) --- updated-dependencies: - dependency-name: colored dependency-version: 3.1.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++---------- nexum_cli/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71f7f3b..a3ef6d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -215,12 +215,11 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "colored" -version = "2.2.0" +version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" +checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "lazy_static", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -514,12 +513,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "lazy_static" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - [[package]] name = "libc" version = "0.2.182" diff --git a/nexum_cli/Cargo.toml b/nexum_cli/Cargo.toml index b953a37..325e6bc 100644 --- a/nexum_cli/Cargo.toml +++ b/nexum_cli/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" nexum_core = { path = "../nexum_core" } anyhow = { workspace = true } tokio = { workspace = true } -colored = "2.1" +colored = "3.1" comfy-table = "7.1" indicatif = "0.18" clap = { version = "4.6", features = ["derive"] }