Module thirdparty
Expand description
Thirdparty utilities.
These are external dependencies which are used throughout the rama ecosystem and which are stable enough to be re-exported here for your utility.
Modules§
- regex
- This crate provides routines for searching strings for matches of a regular
expression (aka “regex”). The regex syntax supported by this crate is similar
to other regex engines, but it lacks several features that are not known how to
implement efficiently. This includes, but is not limited to, look-around and
backreferences. In exchange, all regex searches in this crate have worst case
O(m * n)time complexity, wheremis proportional to the size of the regex andnis proportional to the size of the string being searched. - wildcard
wildcardis a rust crate for wildcard matching.