[package]
edition = "2021"
rust-version = "1.81"
name = "camelcase"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert a dash/dot/underscore/space-separated string to camelCase (foo-bar -> fooBar). A faithful port of the camelcase npm package."
homepage = "https://github.com/trananhtung/camelcase"
documentation = "https://docs.rs/camelcase"
readme = "README.md"
keywords = [
"camelcase",
"camel-case",
"pascalcase",
"string",
"case",
]
categories = [
"text-processing",
"value-formatting",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/camelcase"
[lib]
name = "camelcase"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.regex]
version = "1"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"