1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-05-13 21:26:27 +02:00

Remove Windows deps from ripgrep proper.

All Windows specific code has been (mostly) pushed out of ripgrep and
into its constituent libraries.
This commit is contained in:
Andrew Gallant 2017-02-18 15:05:47 -05:00
parent cf750a190f
commit 8ac5bc0147
2 changed files with 0 additions and 8 deletions

View File

@ -42,10 +42,6 @@ regex = "0.2.1"
same-file = "0.1.1" same-file = "0.1.1"
termcolor = { version = "0.2.0", path = "termcolor" } termcolor = { version = "0.2.0", path = "termcolor" }
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
winapi = "0.2.8"
[build-dependencies] [build-dependencies]
clap = "2.18" clap = "2.18"
lazy_static = "0.2" lazy_static = "0.2"

View File

@ -5,8 +5,6 @@ extern crate clap;
extern crate env_logger; extern crate env_logger;
extern crate grep; extern crate grep;
extern crate ignore; extern crate ignore;
#[cfg(windows)]
extern crate kernel32;
#[macro_use] #[macro_use]
extern crate lazy_static; extern crate lazy_static;
extern crate libc; extern crate libc;
@ -18,8 +16,6 @@ extern crate num_cpus;
extern crate regex; extern crate regex;
extern crate same_file; extern crate same_file;
extern crate termcolor; extern crate termcolor;
#[cfg(windows)]
extern crate winapi;
use std::error::Error; use std::error::Error;
use std::process; use std::process;