inflections 1.1.1

High performance inflection transformation library for changing properties of words like the case.
Documentation
# inflections
A Rust library for transforming one style of string to another focused on high performance.

Read the [documentation](https://docs.rs/inflections) for more.

# Example
```rust
use inflections::Inflect;

assert_eq!("Hello World".to_camel_case(), "helloWorld".to_owned());
```