From c0e85756dd029c333c5d9ae4ab9025cc23338aa9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jul 2023 08:52:45 +0100 Subject: [PATCH] Bump colored from 2.0.0 to 2.0.4 (#1110) Bumps [colored](https://github.com/mackwic/colored) from 2.0.0 to 2.0.4. - [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.0.0...v2.0.4) --- updated-dependencies: - dependency-name: colored dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 19 ++++--------------- atuin/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 717bb7b..2ceabba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,17 +78,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - [[package]] name = "atuin" version = "15.0.0" @@ -524,13 +513,13 @@ checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] name = "colored" -version = "2.0.0" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" +checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" dependencies = [ - "atty", + "is-terminal", "lazy_static", - "winapi", + "windows-sys 0.48.0", ] [[package]] diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml index 814de1b..a63e339 100644 --- a/atuin/Cargo.toml +++ b/atuin/Cargo.toml @@ -69,7 +69,7 @@ runtime-format = "0.1.3" tiny-bip39 = "1" futures-util = "0.3" fuzzy-matcher = "0.3.7" -colored = "2.0.0" +colored = "2.0.4" ratatui = "0.21" [dependencies.tracing-subscriber]