From 1bfe59e42d30656a67d2efcb3717a6f39fe20eb1 Mon Sep 17 00:00:00 2001 From: starr-openai Date: Thu, 7 May 2026 16:21:42 -0700 Subject: [PATCH] codex: fix Windows stdio transport clippy (#20664) Co-authored-by: Codex --- codex-rs/exec-server/src/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/codex-rs/exec-server/src/client.rs b/codex-rs/exec-server/src/client.rs index 88fce6f4ea..ff3cf37904 100644 --- a/codex-rs/exec-server/src/client.rs +++ b/codex-rs/exec-server/src/client.rs @@ -894,6 +894,7 @@ mod tests { use super::ExecServerClient; use super::ExecServerClientConnectOptions; use crate::ProcessId; + #[cfg(not(windows))] use crate::client_api::ExecServerTransportParams; use crate::client_api::StdioExecServerCommand; use crate::client_api::StdioExecServerConnectArgs;