regex-automata 0.2.0

Automata construction and matching using regular expressions.
Documentation
[[test]]
name = "integration"
path = "tests/tests.rs"
[dependencies.fst]
optional = true
version = "0.4.5"

[dependencies.log]
optional = true
version = "0.4.14"

[dependencies.memchr]
default-features = false
version = "2.4.0"

[dependencies.regex-syntax]
optional = true
version = "0.6.24"

[features]
alloc = ["syntax"]
default = ["std", "alloc", "syntax"]
logging = ["log"]
std = []
syntax = ["regex-syntax"]
transducer = ["fst"]

[lib]
bench = false

[package]
authors = ["Andrew Gallant <jamslam@gmail.com>"]
autoexamples = false
autotests = false
categories = ["text-processing"]
description = "Automata construction and matching using regular expressions."
documentation = "https://docs.rs/regex-automata"
edition = "2018"
exclude = ["/.github", "/scripts/*", "/regex-cli", "/regex-test"]
homepage = "https://github.com/BurntSushi/regex-automata"
keywords = ["regex", "dfa", "automata", "automaton", "nfa"]
license = "Unlicense/MIT"
name = "regex-automata"
readme = "README.md"
repository = "https://github.com/BurntSushi/regex-automata"
resolver = "2"
version = "0.2.0"
[profile.bench]
debug = true

[profile.dev]
debug = true
opt-level = 3

[profile.release]
debug = true

[profile.test]
debug = true
opt-level = 3