summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 12:42:11 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 12:42:11 +0800
commit86f16c3042d9f8ba400512c8f2916c3a40e2d1f8 (patch)
treefaee9d7c1afb7cb4c595d3cd0dda95a62fbc37a0 /Cargo.lock
parent3e0d4b022ff8d6ce5115894f3b6ad68f01ff370f (diff)
for a moment I thought 'colored' could be used, but…
…it's really allocation heavy. Something simpler might be it, what about termcolor?
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock12
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 74d5f8b..68c0401 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -87,6 +87,17 @@ dependencies = [
]
[[package]]
+name = "colored"
+version = "1.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59"
+dependencies = [
+ "atty",
+ "lazy_static",
+ "winapi 0.3.9",
+]
+
+[[package]]
name = "crossbeam"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -219,6 +230,7 @@ dependencies = [
"anyhow",
"atty",
"byte-unit",
+ "colored",
"crosstermion",
"filesize",
"flume",