regex 0.1.33

An implementation of regular expressions for Rust.
Documentation
regex
=====

A Rust library for parsing, compiling, and executing regular expressions.

[![Build Status](https://travis-ci.org/rust-lang/regex.svg?branch=master)](https://travis-ci.org/rust-lang/regex)
[![](http://meritbadge.herokuapp.com/regex)](https://crates.io/crates/regex)

[Documentation](http://doc.rust-lang.org/regex)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
regex = "0.1.8"
```

and this to your crate root:

```rust
extern crate regex;
```