case_convert 0.1.0

Converts the first letter of a Rust String to uppercase.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
This library implements case conversion methods for the String type.  
For now there is only one method to convert the first letter of a Rust String to uppercase.  

Credit : this method's code comes from [this post](https://stackoverflow.com/questions/38406793/why-is-capitalizing-the-first-letter-of-a-string-so-convoluted-in-rust)

```
use case_convert::CaseConvert;
let s = String::from("test");
assert_eq!(s.uppercase_first(), "Test");
```

0.1.0 : Converts to uppercase the first letter of a string