2016-06-20 22:53:48 +02:00
|
|
|
[package]
|
|
|
|
name = "grep"
|
2017-03-13 03:33:13 +02:00
|
|
|
version = "0.1.6" #:version
|
2016-06-20 22:53:48 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Fast line oriented regex searching as a library.
|
|
|
|
"""
|
2016-09-14 03:13:33 +02:00
|
|
|
documentation = "http://burntsushi.net/rustdoc/grep/"
|
2016-09-08 22:15:44 +02:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
2016-06-20 22:53:48 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2016-09-07 01:33:03 +02:00
|
|
|
log = "0.3"
|
2017-10-22 00:45:39 +02:00
|
|
|
memchr = "2"
|
2017-01-14 06:46:21 +02:00
|
|
|
regex = "0.2.1"
|
2016-12-30 23:24:09 +02:00
|
|
|
regex-syntax = "0.4.0"
|