[package]
edition = "2021"
name = "string-patterns"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Makes it easier to work with common string patterns and regular expressions in Rust, adding convenient regex match and replace methods (pattern_match and pattern_replace) to the standard String type as well to vectors of strings"
readme = "README.md"
categories = [
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/neilg63/string-patterns"
[lib]
name = "string_patterns"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "pattern_cache"
path = "benches/pattern_cache.rs"
harness = false
[dependencies.regex]
version = "1.*.*"
[dev-dependencies.criterion]
version = "0.5"