2016-06-20 16:53:48 -04:00
|
|
|
[package]
|
|
|
|
name = "grep"
|
2016-09-25 22:29:35 -04:00
|
|
|
version = "0.1.3" #: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]
|
2016-09-06 19:33:03 -04:00
|
|
|
log = "0.3"
|
2016-06-20 16:53:48 -04:00
|
|
|
memchr = "0.1"
|
2016-10-11 19:57:09 -04:00
|
|
|
memmap = "0.5"
|
2016-09-21 19:05:15 -04:00
|
|
|
regex = "0.1.77"
|
2016-09-05 18:22:12 -04:00
|
|
|
regex-syntax = "0.3.5"
|