2018-04-29 15:29:52 +02:00
|
|
|
[package]
|
|
|
|
name = "grep-matcher"
|
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 = """
|
|
|
|
A trait for regular expressions, with a focus on line oriented search.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/grep-matcher"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "pattern", "trait"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
autotests = false
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-07 19:14:31 +02:00
|
|
|
memchr = "2.0.2"
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-09-07 19:14:31 +02:00
|
|
|
regex = "1.0.5"
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/tests.rs"
|