summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-09-19 08:58:45 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-09-19 08:58:45 +0800
commit946806e7390799807361562b038fb12eeb2ddf11 (patch)
treea084de5aae63f56ddb28ee8d61d63f438466205f /Cargo.lock
parent7fe68ead0222467092f67d49855655faf6d61ee4 (diff)
parenta734efb7e332de6a3bb4911e72463e4f6fc342e1 (diff)
chore: replace `colored` dependency with `owo-colors`.
The latter provide zero-allocation coloring in the terminal and may improve compile times a little.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock25
1 files changed, 7 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 05cf00f..ad6e71a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -101,17 +101,6 @@ dependencies = [
]
[[package]]
-name = "colored"
-version = "2.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
-dependencies = [
- "atty",
- "lazy_static",
- "winapi",
-]
-
-[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -247,13 +236,13 @@ dependencies = [
"atty",
"byte-unit",
"clap",
- "colored",
"crosstermion",
"filesize",
"itertools",
"jwalk",
"num_cpus",
"open",
+ "owo-colors",
"petgraph",
"pretty_assertions",
"sysinfo",
@@ -363,12 +352,6 @@ dependencies = [
]
[[package]]
-name = "lazy_static"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
-[[package]]
name = "libc"
version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -495,6 +478,12 @@ dependencies = [
]
[[package]]
+name = "owo-colors"
+version = "3.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
+
+[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"