2018-04-29 09:29:52 -04:00
|
|
|
[package]
|
|
|
|
name = "grep-matcher"
|
2023-11-26 14:13:54 -05:00
|
|
|
version = "0.1.7" #:version
|
2018-04-29 09:29:52 -04: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"
|
2020-02-28 17:31:43 -08:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
|
2018-04-29 09:29:52 -04:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "pattern", "trait"]
|
2022-05-09 04:52:11 -07:00
|
|
|
license = "Unlicense OR MIT"
|
2018-04-29 09:29:52 -04:00
|
|
|
autotests = false
|
2023-09-25 16:48:25 -04:00
|
|
|
edition = "2021"
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-25 16:48:25 -04:00
|
|
|
memchr = "2.6.3"
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-25 16:48:25 -04:00
|
|
|
regex = "1.9.5"
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/tests.rs"
|