string-patterns 0.4.0

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
Documentation
[package]
name = "string-patterns"
version = "0.4.0"
edition = "2021"
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"
repository = "https://github.com/neilg63/string-patterns"
categories = ["text-processing", "parsing"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
regex = "1.*.*"

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "pattern_cache"
harness = false