convert_case 0.6.0

Convert strings into any case
Documentation
[package]
name = "convert_case"
version = "0.6.0"
authors = ["Rutrum <dave@rutrum.net>"]
edition = "2018"
description = "Convert strings into any case"
license = "MIT"
keywords = [ "casing", "case", "string" ]
categories = [ "text-processing" ]
readme = "README.md"
repository = "https://github.com/rutrum/convert-case"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace]
members = ["ccase"]

[profile.release]
codegen-units = 1
lto = true
panic = 'abort'

[features]
random = ["rand"]

[dependencies]
rand = { version = "^0.7", optional = true }
unicode-segmentation = "1.9.0"

[dev-dependencies]
strum = "0.18.0"
strum_macros = "0.18.0"