Module thirdparty

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, where m is proportional to the size of the regex and n is proportional to the size of the string being searched.
wildcard
wildcard is a rust crate for wildcard matching.