titlecase 3.2.0

Capitalize text according to a style defined by John Gruber for Daring Fireball.
Documentation
[package]
name = "titlecase"
description = "Capitalize text according to a style defined by John Gruber for Daring Fireball."
version = "3.2.0"
edition = "2021"
authors = ["Wesley Moore <wes@wezm.net>"]
rust-version = "1.70.0"

documentation = "https://docs.rs/titlecase"
repository = "https://github.com/wezm/titlecase"

readme = "README.md"
license = "MIT"

keywords = ["title", "case", "capitalization", "capitalisation", "wasm"]
categories = ["text-processing"]

[lib]
# cdylib is for WASM
crate-type = ["cdylib", "rlib"]

[dependencies]
regex = { version = "1.10", default-features = false, features = ["std", "unicode-perl"]}

[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen = "0.2.92"

[features]
default = ["perf"]
perf = ["regex/perf"]