Lines Matching full:regex
1 regex-syntax
5 …[Build status](https://github.com/rust-lang/regex/workflows/ci/badge.svg)](https://github.com/rust…
6 [](https://crates.io/crates/regex-syn…
7 …ps://img.shields.io/badge/rust-1.28.0%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/regex)
12 https://docs.rs/regex-syntax
55 expressions. Therefore, while there may be bugs in the regex parser itself,
57 in the compiler or the standard library. (Since `regex-syntax` has zero
70 [in the "Crate features" section of the documentation](https://docs.rs/regex-syntax/*/#crate-featur…
83 The primary purpose of this crate is to provide the parser used by `regex`.
84 Specifically, this crate is treated as an implementation detail of the `regex`,
85 and is primarily developed for the needs of `regex`.
87 Since this crate is an implementation detail of `regex`, it may experience
88 breaking change releases at a different cadence from `regex`. This is only
89 possible because this crate is _not_ a public dependency of `regex`.
92 compile a `regex::Regex` from a `regex_syntax::hir::Hir`. Instead, one must
94 compile that via `Regex::new`. While this does repeat some work, compilation
97 Stated differently, the coupling between `regex` and `regex-syntax` exists only