caseidae 1.0.0

Convenient converters between letter casings of Rust identifiers.
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 = "2024"
name = "caseidae"
version = "1.0.0"
build = false
include = [
    "/src",
    "/examples",
    "/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convenient converters between letter casings of Rust identifiers."
readme = "readme.md"
keywords = [
    "casing",
    "case",
    "naming",
    "ident",
    "identifier",
]
categories = [
    "development-tools",
    "development-tools::procedural-macro-helpers",
    "rust-patterns",
    "text-processing",
    "value-formatting",
]
license = "AGPL-3.0-only"
repository = "https://codeberg.org/matous-volf/caseidae"

[features]
default = ["syn"]
syn = [
    "dep:syn",
    "dep:proc-macro2",
]

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

[[example]]
name = "macro"
path = "examples/macro.rs"

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

[dependencies.convert_case]
version = "0.11.0"
default-features = false

[dependencies.convert_case_extras]
version = "0.2.0"

[dependencies.proc-macro2]
version = "1.0.106"
optional = true
default-features = false

[dependencies.syn]
version = "2.0.118"
optional = true
default-features = false

[dev-dependencies.quote]
version = "1.0.46"
default-features = false

[dev-dependencies.syn]
version = "2.0.118"
features = ["printing"]
default-features = false

[lints.rust]
unsafe_code = "forbid"