From 93f81443d28524c47d17e42167208d7f44e8e7a0 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 7 Jul 2023 01:49:02 +0000
Subject: [PATCH] chore(deps): Bump colored from 2.0.0 to 2.0.4 (#17876)
Bumps [colored](https://github.com/mackwic/colored) from 2.0.0 to 2.0.4.
Release notes
Sourced from colored's
releases.
v2.0.4
- Switch from
winapi
to windows-sys
.
v2.0.3
- Document crate MSRV of
1.63
.
v2.0.2
- Fix typo in
src/control.rs
.
- Replace
atty
dependency with
is-terminal
.
v2.0.1
- Add edition for future compatibility.
- Implement custom colors that can be stored in a variable.
Changelog
Sourced from colored's
changelog.
2.0.4
- Switch from
winapi
to windows-sys
.
2.0.3
- Document crate MSRV of
1.63
.
2.0.2
- Fix typo in
src/control.rs
.
- Replace
atty
dependency with
is-terminal
.
2.0.1 (July 3, 2023)
- Add edition for future compatibility.
- Implement custom colors that can be stored in a variable.
Commits
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=colored&package-manager=cargo&previous-version=2.0.0&new-version=2.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 8 ++++----
Cargo.toml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 4ac0b54848f8a..b436bf9edc4d1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2028,13 +2028,13 @@ dependencies = [
[[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/Cargo.toml b/Cargo.toml
index 98d9db47fd724..665185b068ab7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -246,7 +246,7 @@ bytesize = { version = "1.2.0", default-features = false }
chrono = { version = "0.4.26", default-features = false, features = ["serde"] }
cidr-utils = { version = "0.5.10", default-features = false }
clap = { version = "4.1.14", default-features = false, features = ["derive", "error-context", "env", "help", "std", "string", "usage", "wrap_help"] }
-colored = { version = "2.0.0", default-features = false }
+colored = { version = "2.0.4", default-features = false }
csv = { version = "1.2", default-features = false }
derivative = { version = "2.2.0", default-features = false }
dirs-next = { version = "2.0.0", default-features = false, optional = true }