Skip to main content

Module thirdparty

Module thirdparty 

Available on crate feature std only.
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.

Re-export only: keep these deps out of no_std graphs (e.g. kernel drivers) — regex links std transitively.

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.