xiaoski a4399037ac fix: use char-based slicing instead of byte-based to handle UTF-8
Byte index slicing like `&text[..100.min(text.len())]` panics when the
byte index falls inside a multi-byte UTF-8 character (e.g., Chinese).
Changed to `text.chars().take(100).collect::<String>()` for safe
character-based truncation.
2026-04-08 08:49:52 +08:00
2026-04-05 17:11:42 +08:00
2026-04-05 17:11:42 +08:00
2026-04-05 14:59:23 +08:00

The file is empty.
Description
No description provided
Readme 378 KiB
Languages
Rust 100%