caseify 0.1.3

A CLI tool to convert strings between different cases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(
    clippy::implicit_return,
    clippy::pattern_type_mismatch,
    clippy::missing_inline_in_public_items,
    clippy::mod_module_files,
    reason = "bad lint"
)]

/// Defines the [`Case`] struct to list the supported cases.
pub mod case;
/// Defines the [`Caseify`] trait to transform an input to the wanted case.
pub mod caseify;
/// Internal state for parsing and casifying
mod char_type;