From 37544c092f068761c8da1866c2eab20fd4cac146 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sun, 11 Sep 2016 13:25:37 -0400 Subject: [PATCH] We don't need regex-syntax directly in ripgrep. --- Cargo.toml | 1 - src/main.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29586bc..b027722 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,6 @@ memchr = "0.1" memmap = "0.2" num_cpus = "1" regex = "0.1.75" -regex-syntax = "0.3.5" rustc-serialize = "0.3" term = "0.4" thread_local = "0.2" diff --git a/src/main.rs b/src/main.rs index 6666a6c..97cfc88 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,6 @@ extern crate memchr; extern crate memmap; extern crate num_cpus; extern crate regex; -extern crate regex_syntax as syntax; extern crate rustc_serialize; extern crate term; extern crate thread_local;