regex 1.0.6

An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.
Documentation
[[test]]
name = "default"
path = "tests/test_default.rs"

[[test]]
name = "default-bytes"
path = "tests/test_default_bytes.rs"

[[test]]
name = "nfa"
path = "tests/test_nfa.rs"

[[test]]
name = "nfa-utf8bytes"
path = "tests/test_nfa_utf8bytes.rs"

[[test]]
name = "nfa-bytes"
path = "tests/test_nfa_bytes.rs"

[[test]]
name = "backtrack"
path = "tests/test_backtrack.rs"

[[test]]
name = "backtrack-utf8bytes"
path = "tests/test_backtrack_utf8bytes.rs"

[[test]]
name = "backtrack-bytes"
path = "tests/test_backtrack_bytes.rs"

[[test]]
name = "crates-regex"
path = "tests/test_crates_regex.rs"
[badges.appveyor]
repository = "rust-lang-libs/regex"

[badges.travis-ci]
repository = "rust-lang/regex"
[dependencies.aho-corasick]
version = "0.6.7"

[dependencies.memchr]
version = "2.0.2"

[dependencies.regex-syntax]
version = "0.6.2"

[dependencies.thread_local]
version = "0.3.6"

[dependencies.utf8-ranges]
version = "1.0.1"
[dev-dependencies.lazy_static]
version = "1"

[dev-dependencies.quickcheck]
default-features = false
version = "0.7"

[dev-dependencies.rand]
version = "0.5"

[features]
default = ["use_std"]
pattern = []
unstable = ["pattern"]
use_std = []

[lib]
bench = false

[package]
authors = ["The Rust Project Developers"]
autotests = false
categories = ["text-processing"]
description = "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n"
documentation = "https://docs.rs/regex"
exclude = ["/.travis.yml", "/appveyor.yml", "/ci/*", "/scripts/*"]
homepage = "https://github.com/rust-lang/regex"
license = "MIT/Apache-2.0"
name = "regex"
readme = "README.md"
repository = "https://github.com/rust-lang/regex"
version = "1.0.6"
[profile.bench]
debug = true

[profile.release]
debug = true

[profile.test]
debug = true