[package]
name = "humanize-string"
version = "0.1.0"
edition = "2021"
rust-version = "1.81"
description = "Convert a camelCase / snake_case / dash-case string into a human-readable one (fooBar -> Foo bar). A faithful port of the humanize-string npm package."
documentation = "https://docs.rs/humanize-string"
repository = "https://github.com/trananhtung/humanize-string"
homepage = "https://github.com/trananhtung/humanize-string"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["humanize", "string", "camelcase", "title", "case"]
categories = ["text-processing", "value-formatting"]
authors = ["trananhtung"]
exclude = ["/.github", "/.gitignore"]
[dependencies]
decamelize = "0.1"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.clippy]
all = "warn"
pedantic = "warn"