summaryrefslogtreecommitdiffstats
path: root/grep/Cargo.toml
blob: 8637f16be3e8bbb009d37793652eab1616602e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "grep"
version = "0.1.3"  #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
"""
documentation = "http://burntsushi.net/rustdoc/grep/"
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"

[dependencies]
log = "0.3"
memchr = "0.1"
memmap = "0.5"
regex = "0.1.77"
regex-syntax = "0.3.5"