Some checks failed
Continuous integration / Tests (push) Blocked by required conditions
Continuous integration / Tests (windows-latest) (push) Waiting to run
Continuous integration / Check clippy, formatting, and documentation (push) Failing after 20s
Continuous integration / Tests (ubuntu-latest) (push) Failing after 22s
Continuous integration / Check fuzzers (push) Failing after 18s
Continuous integration / Check mininum Rust version (push) Failing after 20s
709 B
709 B
unreleased
0.5.0
- 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.
0.4.1
Improvements:
- Add Train-Case support
0.4.0
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