2018-04-29 09:29:52 -04:00
|
|
|
[package]
|
|
|
|
name = "grep-regex"
|
2019-02-16 09:30:06 -05:00
|
|
|
version = "0.1.2" #:version
|
2018-04-29 09:29:52 -04:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Use Rust's regex library with the 'grep' crate.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/grep-regex"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "search", "pattern", "line"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-07 13:14:31 -04:00
|
|
|
log = "0.4.5"
|
|
|
|
grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
|
2019-01-19 09:32:32 -05:00
|
|
|
regex = "1.1"
|
2019-01-26 12:25:21 -05:00
|
|
|
regex-syntax = "0.6.5"
|
2018-08-20 07:26:56 -04:00
|
|
|
thread_local = "0.3.6"
|
2018-09-07 13:14:31 -04:00
|
|
|
utf8-ranges = "1.0.1"
|