diff options
author | João Souto <joao.jpgs@hotmail.com> | 2020-02-25 00:30:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 19:30:17 -0500 |
commit | 5c1ab080cd8989c3ac2b3a8c919fe14052feac79 (patch) | |
tree | c6c31ddaa8634f9d7793f662fcdeed9db7e1b437 /cli/lib.rs | |
parent | ac933dd1b89a20b2e63b5d6edc5b3d0c549335bc (diff) |
Remove ansi_term dependency (#4116)
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lib.rs b/cli/lib.rs index 25c4b33a0..33844baef 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -389,7 +389,7 @@ async fn test_command( pub fn main() { #[cfg(windows)] - ansi_term::enable_ansi_support().ok(); // For Windows 10 + colors::enable_ansi(); // For Windows 10 log::set_logger(&LOGGER).unwrap(); let args: Vec<String> = env::args().collect(); |