13 releases
0.2.6 | Oct 26, 2024 |
---|---|
0.2.5 | Aug 5, 2024 |
0.2.4 | Jul 22, 2024 |
0.2.3 | Dec 24, 2023 |
0.1.6 | May 11, 2023 |
#526 in Rust patterns
3,376 downloads per month
Used in 11 crates
(via spider)
12KB
160 lines
case_insensitive_string
A rust case_insensitive_string struct crate.
Install the crate with cargo add case_insensitive_string
.
use case_insensitive_string::CaseInsensitiveString;
fn main() {
let case_insensitive = CaseInsensitiveString::from("iDk");
// both of the strings are a match!
assert_eq!(case_insensitive, CaseInsensitiveString::from("IDK"))
}
Features
compact
feature flag to enable compact_str usage.serde
feature flag to enable serde usage.
Dependencies
~0–265KB