regex_macros 0.1.23

An implementation of statically compiled regular expressions for Rust.
[package]
name = "regex_macros"
version = "0.1.23"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang/regex"
homepage = "https://github.com/rust-lang/regex"
description = """
An implementation of statically compiled regular expressions for Rust.
"""

[lib]
name = "regex_macros"
plugin = true

[[test]]
path = "tests/test_native.rs"
name = "all"

[[bench]]
name = "all"
path = "benches/bench_native.rs"
test = false
bench = true

[dependencies.regex]
path = ".."
version = "0.1.0"
features = ["pattern"]

[dev-dependencies]
rand = "0.3"