- Add
no_std
support. - Remove non-additive
unicode
feature. The library now useschar::is_alphanumeric
instead of theunicode-segmentation
library to determine word boundaries in all cases.
Improvements:
- Add Train-Case support
Breaking changes:
- Make unicode support optional (off by default). Enable the
unicode
crate feature if you need unicode support. - Rename all traits from
SomeCase
toToSomeCase
, matchingstd
s convention of beginning trait names with a verb (ToOwned
,AsRef
, …) - Rename
ToMixedCase
toToLowerCamelCase
- Rename
ToCamelCase
toToUpperCamelCase
- Add
ToPascalCase
as an alias toToUpperCamelCase