2018-08-30 02:53:52 +02:00
|
|
|
[package]
|
|
|
|
name = "grep-cli"
|
2018-09-07 19:14:31 +02:00
|
|
|
version = "0.1.1" #:version
|
2018-08-30 02:53:52 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Utilities for search oriented command line applications.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/grep-cli"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "cli", "utility", "util"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
atty = "0.2.11"
|
2018-09-07 19:14:31 +02:00
|
|
|
globset = { version = "0.4.2", path = "../globset" }
|
|
|
|
lazy_static = "1.1.0"
|
|
|
|
log = "0.4.5"
|
2019-01-19 16:32:32 +02:00
|
|
|
regex = "1.1"
|
|
|
|
same-file = "1.0.4"
|
|
|
|
termcolor = "1.0.4"
|
2018-08-30 02:53:52 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi-util]
|
|
|
|
version = "0.1.1"
|