2016-06-20 16:53:48 -04:00
|
|
|
[package]
|
|
|
|
name = "grep"
|
2018-02-11 13:35:54 -05:00
|
|
|
version = "0.1.8" #:version
|
2016-06-20 16:53:48 -04:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Fast line oriented regex searching as a library.
|
|
|
|
"""
|
2016-09-13 21:13:33 -04:00
|
|
|
documentation = "http://burntsushi.net/rustdoc/grep/"
|
2016-09-08 16:15:44 -04:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
2016-06-20 16:53:48 -04:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-02-03 21:31:28 -05:00
|
|
|
log = "0.4"
|
2017-10-21 18:45:39 -04:00
|
|
|
memchr = "2"
|
2018-05-07 19:07:30 +02:00
|
|
|
regex = "1"
|
|
|
|
regex-syntax = "0.6"
|