inflections

A Rust library for transforming one style of string to another focused on high performance.

Read the documentation for more.

Example

```rust use inflections::Inflect;

asserteq!("Hello World".tocamelcase(), "helloWorld".toowned()); ```