[package]
edition = "2021"
name = "simple-string-patterns"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Makes it easier to match, split and extract strings in Rust without regular expressions. The parallel string-patterns crate provides extensions to work with regular expressions via the Regex library"
readme = "README.md"
categories = [
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/neilg63/simple-string-patterns"
[features]
chain = []
default = []
rules = []
[lib]
name = "simple_string_patterns"
path = "src/lib.rs"
[[bench]]
name = "matching"
path = "benches/matching.rs"
harness = false
[dependencies.alphanumeric]
version = "0.2.0"
[dev-dependencies.criterion]
version = "0.5"