From 519a6b68af2339afadaa32a8649efabbb0b9266a Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 23 Jan 2019 20:01:32 -0500 Subject: [PATCH] grep: remove unused dependencies We remove these for now, but we'll eventually add them back once the examples get more fleshed out. Closes #1043 --- grep/Cargo.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/grep/Cargo.toml b/grep/Cargo.toml index 92222cd..b6a97d2 100644 --- a/grep/Cargo.toml +++ b/grep/Cargo.toml @@ -21,16 +21,9 @@ grep-regex = { version = "0.1.1", path = "../grep-regex" } grep-searcher = { version = "0.1.1", path = "../grep-searcher" } [dev-dependencies] -atty = "0.2.11" -regex = "1.1" termcolor = "1.0.4" walkdir = "2.2.7" -[dev-dependencies.clap] -version = "2.32.0" -default-features = false -features = ["suggestions"] - [features] simd-accel = ["grep-searcher/simd-accel"] pcre2 = ["grep-pcre2"]