2018-04-29 09:29:52 -04:00
|
|
|
[package]
|
|
|
|
name = "grep-regex"
|
2023-11-26 14:15:44 -05:00
|
|
|
version = "0.1.12" #: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"
|
2020-02-28 17:31:43 -08:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
|
2018-04-29 09:29:52 -04:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "search", "pattern", "line"]
|
2022-05-09 04:52:11 -07:00
|
|
|
license = "Unlicense OR MIT"
|
2023-06-16 15:01:30 -04:00
|
|
|
edition = "2021"
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-25 17:21:28 -04:00
|
|
|
bstr = "1.6.2"
|
2023-11-26 14:15:34 -05:00
|
|
|
grep-matcher = { version = "0.1.7", path = "../matcher" }
|
2023-09-25 17:21:28 -04:00
|
|
|
log = "0.4.20"
|
2023-10-09 18:23:36 -04:00
|
|
|
regex-automata = { version = "0.4.0" }
|
|
|
|
regex-syntax = "0.8.0"
|