perf: use string preallocations for string concatenation

This commit is contained in:
Nik Revenco 2025-03-29 23:59:06 +00:00
parent af3b670de6
commit 95344a9585
3 changed files with 20 additions and 1 deletions

View file

@ -71,5 +71,5 @@ pub fn format_relative_time(timestamp: i64, timezone_offset: i32) -> String {
"from now"
};
format!("{value} {unit} {label}")
crate::concat!(value, " ", unit, " ", label)
}