summaryrefslogtreecommitdiffstats
path: root/crates/ignore/src/lib.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2021-06-01 20:45:45 -0400
committerAndrew Gallant <jamslam@gmail.com>2021-06-01 21:07:37 -0400
commite824531e387b96b43fd2c2d396c884c010eb13d4 (patch)
treeac6dc8dfa65f55daa72cac3e7cf7a6b763296041 /crates/ignore/src/lib.rs
parentaf54069c51cc3656c9c343a7fb3c9360cfddf505 (diff)
edition: manual changes
This is mostly just about removing 'extern crate' everywhere and fixing the fallout.
Diffstat (limited to 'crates/ignore/src/lib.rs')
-rw-r--r--crates/ignore/src/lib.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/crates/ignore/src/lib.rs b/crates/ignore/src/lib.rs
index 3c82231d..824f7c4d 100644
--- a/crates/ignore/src/lib.rs
+++ b/crates/ignore/src/lib.rs
@@ -46,19 +46,6 @@ See the documentation for `WalkBuilder` for many other options.
#![deny(missing_docs)]
-
-#[macro_use]
-extern crate lazy_static;
-#[macro_use]
-extern crate log;
-
-
-
-
-use walkdir;
-#[cfg(windows)]
-extern crate winapi_util;
-
use std::error;
use std::fmt;
use std::io;