From bf6697fab065ac85cff7dbd714d10c09c0d5fc91 Mon Sep 17 00:00:00 2001 From: Winston Howes Date: Tue, 16 Jun 2026 14:57:10 -0700 Subject: [PATCH] Keep CA helper stage within review limit --- codex-rs/network-proxy/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/codex-rs/network-proxy/src/lib.rs b/codex-rs/network-proxy/src/lib.rs index 229ccb81b6..2aded28034 100644 --- a/codex-rs/network-proxy/src/lib.rs +++ b/codex-rs/network-proxy/src/lib.rs @@ -1,9 +1,7 @@ #![deny(clippy::print_stdout, clippy::print_stderr)] +#![allow(dead_code)] -// These helpers are wired into command launches by the next layer of the MITM stack. -#[allow(dead_code)] mod certs; -#[allow(dead_code)] mod child_ca; mod config; mod connect_policy;