summaryrefslogtreecommitdiffstats
path: root/crates/cli/src/lib.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2021-06-01 19:47:46 -0400
committerAndrew Gallant <jamslam@gmail.com>2021-06-01 21:07:37 -0400
commitaf54069c51cc3656c9c343a7fb3c9360cfddf505 (patch)
tree3a64d567b9a5fa44b4141637ffff4c1bee15d1f7 /crates/cli/src/lib.rs
parent77a9e9996400483eed4a9746759a842d6b774882 (diff)
edition: run 'cargo fix --edition --edition-idioms --all'
Diffstat (limited to 'crates/cli/src/lib.rs')
-rw-r--r--crates/cli/src/lib.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/crates/cli/src/lib.rs b/crates/cli/src/lib.rs
index 059f42c4..c9a6aa9c 100644
--- a/crates/cli/src/lib.rs
+++ b/crates/cli/src/lib.rs
@@ -158,18 +158,12 @@ error message is crafted that typically tells the user how to fix the problem.
#![deny(missing_docs)]
-extern crate atty;
-extern crate bstr;
-extern crate globset;
+use atty;
+
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
-extern crate regex;
-extern crate same_file;
-extern crate termcolor;
-#[cfg(windows)]
-extern crate winapi_util;
mod decompress;
mod escape;