A rust caseinsensitivestring struct crate.
Install the crate with cargo add case_insensitive_string
.
```rust use caseinsensitivestring::CaseInsensitiveString;
fn main() { let case_insensitive = CaseInsensitiveString::from("iDk");
// both of the strings are a match!
assert_eq!(case_insensitive, CaseInsensitiveString::from("IDK"))
} ```
compact
feature flag to enable compact_str usage.serde
feature flag to enable serde usage.