From 8ac5bc0147b1e75d82cd7038ae07e296a272285e Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sat, 18 Feb 2017 15:05:47 -0500 Subject: Remove Windows deps from ripgrep proper. All Windows specific code has been (mostly) pushed out of ripgrep and into its constituent libraries. --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 66860d14..47ce5b91 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,8 +5,6 @@ extern crate clap; extern crate env_logger; extern crate grep; extern crate ignore; -#[cfg(windows)] -extern crate kernel32; #[macro_use] extern crate lazy_static; extern crate libc; @@ -18,8 +16,6 @@ extern crate num_cpus; extern crate regex; extern crate same_file; extern crate termcolor; -#[cfg(windows)] -extern crate winapi; use std::error::Error; use std::process; -- cgit v1.2.3