rust_stringz 1.0.0

A simple string manipulation library for Rust that you should probably don't need. It's just for learning purposes.
Documentation
pub fn to_uppercase(s: &str) -> String {
    s.to_uppercase()
}

mod tests {
    use super::to_uppercase;

    #[test]
    fn test_all_lowercase() {
        let result = to_uppercase("test");
        assert_eq!(result, "TEST");
    }

    #[test]
    fn test_mixed_case() {
        let result: String = to_uppercase("TeSt_TeSt");
        assert_eq!(result, "TEST_TEST");
    }
}