A Rust library for transforming one style of string to another focused on high performance.
Read the documentation for more.
```rust use inflections::Inflect;
asserteq!("Hello World".tocamelcase(), "helloWorld".toowned()); ```