[package]
edition = "2021"
rust-version = "1.81"
name = "humanize-string"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/trananhtung/humanize-string"
documentation = "https://docs.rs/humanize-string"
readme = "README.md"
keywords = [
"humanize",
"string",
"camelcase",
"title",
"case",
]
categories = [
"text-processing",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/humanize-string"
[lib]
name = "humanize_string"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.decamelize]
version = "0.1"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"