Skip to content

Commit 7928c7e

Browse files
committedSep 19, 2023
chore(Cargo.lock): bump colored and tracing-tree
This reduces the amount of dependencies pulling in atty. ``` Updating colored v2.0.0 -> v2.0.4 Updating tracing-tree v0.2.3 -> v0.2.4 ``` Signed-off-by: Martin Kröning <[email protected]>
1 parent 0692db1 commit 7928c7e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎Cargo.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -627,13 +627,13 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
627627

628628
[[package]]
629629
name = "colored"
630-
version = "2.0.0"
630+
version = "2.0.4"
631631
source = "registry+https://github.com/rust-lang/crates.io-index"
632-
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
632+
checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6"
633633
dependencies = [
634-
"atty",
634+
"is-terminal",
635635
"lazy_static",
636-
"winapi",
636+
"windows-sys 0.48.0",
637637
]
638638

639639
[[package]]
@@ -5591,11 +5591,11 @@ dependencies = [
55915591

55925592
[[package]]
55935593
name = "tracing-tree"
5594-
version = "0.2.3"
5594+
version = "0.2.4"
55955595
source = "registry+https://github.com/rust-lang/crates.io-index"
5596-
checksum = "4f9742d8df709837409dbb22aa25dd7769c260406f20ff48a2320b80a4a6aed0"
5596+
checksum = "92d6b63348fad3ae0439b8bebf8d38fb5bda0b115d7a8a7e6f165f12790c58c3"
55975597
dependencies = [
5598-
"atty",
5598+
"is-terminal",
55995599
"nu-ansi-term",
56005600
"tracing-core",
56015601
"tracing-log",

‎src/tools/tidy/src/deps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
120120
"annotate-snippets",
121121
"ar_archive_writer",
122122
"arrayvec",
123-
"atty",
124123
"autocfg",
125124
"bitflags",
126125
"block-buffer",
@@ -181,6 +180,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
181180
"intl-memoizer",
182181
"intl_pluralrules",
183182
"io-lifetimes",
183+
"is-terminal",
184184
"itertools",
185185
"itoa",
186186
"jobserver",

0 commit comments

Comments
 (0)
Please sign in to comment.