Use non-nightly rust

This commit is contained in:
Andras Schmelczer 2025-08-17 22:41:48 +01:00
parent 7ea8a77403
commit 063ee2a2c0
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
9 changed files with 22 additions and 19 deletions

View file

@ -8,4 +8,6 @@ where
Ok(normalize_string(&s))
}
pub fn normalize_string(s: &str) -> String { s.trim().to_lowercase() }
pub fn normalize_string(s: &str) -> String {
s.trim().to_lowercase()
}