2018-04-29 15:29:52 +02:00
|
|
|
[package]
|
|
|
|
name = "grep-regex"
|
2018-09-07 19:14:31 +02:00
|
|
|
version = "0.1.1" #:version
|
2018-04-29 15:29:52 +02: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 19:14:31 +02:00
|
|
|
log = "0.4.5"
|
|
|
|
grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
|
|
|
|
regex = "1.0.5"
|
|
|
|
regex-syntax = "0.6.2"
|
2018-08-20 13:26:56 +02:00
|
|
|
thread_local = "0.3.6"
|
2018-09-07 19:14:31 +02:00
|
|
|
utf8-ranges = "1.0.1"
|