decamelize 0.1.1

Convert a camelCase string to a separated lower-case string (e.g. fooBar -> foo_bar). A faithful, zero-dependency port of the decamelize npm package.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.81"
name = "decamelize"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
    "/.github",
    "/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert a camelCase string to a separated lower-case string (e.g. fooBar -> foo_bar). A faithful, zero-dependency port of the decamelize npm package."
homepage = "https://github.com/trananhtung/decamelize"
documentation = "https://docs.rs/decamelize"
readme = "README.md"
keywords = [
    "camelcase",
    "decamelize",
    "snake-case",
    "string",
    "case",
]
categories = [
    "text-processing",
    "value-formatting",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/decamelize"

[lib]
name = "decamelize"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies]

[lints.clippy]
all = "warn"
pedantic = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"