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
fix(box): gate split-console (raw fds) to Unix — Windows build
The split-console path used std::os::unix::io::AsRawFd / as_raw_fd, which don't
exist on Windows, breaking the v2.0.7 Windows build (E0433/E0599) — so the
release aborted before publishing (nothing was published). Gate the split path
to #[cfg(unix)]; Windows always uses the merged single-file console
(set_console_output), same as before. Unix behavior unchanged.
0 commit comments