mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
grep: add clap and regex dev dependencies to grep
These are (or will be) used in grep's examples.
This commit is contained in:
parent
3dd4b77dfb
commit
0e2f8f7b47
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -168,12 +168,14 @@ name = "grep"
|
|||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"grep-cli 0.1.0",
|
"grep-cli 0.1.0",
|
||||||
"grep-matcher 0.1.0",
|
"grep-matcher 0.1.0",
|
||||||
"grep-pcre2 0.1.0",
|
"grep-pcre2 0.1.0",
|
||||||
"grep-printer 0.1.0",
|
"grep-printer 0.1.0",
|
||||||
"grep-regex 0.1.0",
|
"grep-regex 0.1.0",
|
||||||
"grep-searcher 0.1.0",
|
"grep-searcher 0.1.0",
|
||||||
|
"regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"termcolor 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"termcolor 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -22,9 +22,15 @@ grep-searcher = { version = "0.1.0", path = "../grep-searcher" }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
atty = "0.2.11"
|
atty = "0.2.11"
|
||||||
|
regex = "1"
|
||||||
termcolor = "1"
|
termcolor = "1"
|
||||||
walkdir = "2.2.2"
|
walkdir = "2.2.2"
|
||||||
|
|
||||||
|
[dev-dependencies.clap]
|
||||||
|
version = "2.32.0"
|
||||||
|
default-features = false
|
||||||
|
features = ["suggestions"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
avx-accel = ["grep-searcher/avx-accel"]
|
avx-accel = ["grep-searcher/avx-accel"]
|
||||||
simd-accel = ["grep-searcher/simd-accel"]
|
simd-accel = ["grep-searcher/simd-accel"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user