[package]
edition = "2024"
name = "inflection-rs"
version = "0.2.2"
build = false
exclude = [
"Dockerfile",
"target",
"docker*",
"*.lock",
".*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inflection is a string transformation library. It singularizes and pluralizes English words, and transforms strings from CamelCase to underscored string."
homepage = "https://github.com/floating-floaties/inflection-rs"
readme = "README.md"
keywords = [
"inflection",
"parameterize",
"pluralize",
"singularize",
"titleize",
]
license = "GPL-3.0-only"
repository = "https://github.com/floating-floaties/inflection-rs"
[lib]
name = "inflection_rs"
path = "src/lib.rs"
bench = false
[[bench]]
name = "inflection_benchmark"
path = "benches/inflection_benchmark.rs"
harness = false
[dependencies.deunicode]
version = "1.6.2"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.regex]
version = "1.11.1"
[dev-dependencies.criterion]
version = "0.5"