diff options
author | Guillaume Pasquet <dev@etenil.net> | 2022-02-24 23:19:51 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2022-02-24 23:19:51 +0000 |
commit | 30dd79ca9480ddb9db19030113d14ede49272411 (patch) | |
tree | 821fa5904e992e2086642a2a33dba16d8c49df66 /Cargo.lock | |
parent | 79a577031c062a4e3f79f39c8d18ea7edb8a425e (diff) |
Fix #4: Color output
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -39,6 +39,7 @@ name = "barb" version = "0.1.5" dependencies = [ "clap 3.0.14", + "colored", "jq-rs", "jsonformat", "serde", @@ -128,6 +129,17 @@ 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 = "crc32fast" version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" |