Regular expression support for tust is provided by the regex crate, add it to your Cargo.toml:
[dependencies]
regex = "0.1"
The main interface of the regex crate is regex::Regex:
extern crate regex;
use regex::Regex;
fn main() {
//"r" stands for "raw" str...