You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: Remove unnecessary string allocations in command output handling
Replace `.to_string()` calls with `.into_owned()` to avoid double allocation
when processing command stdout/stderr. This eliminates redundant String
creation when `Cow<str>` is already borrowed from valid UTF-8 output.
0 commit comments