From c2af006958cedbf1c554f11145740ac212d2e67e Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 4 Jun 2026 11:54:58 -0400 Subject: [PATCH] Remove hawk.toml --- codex-rs/hawk.toml | 63 ---------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 codex-rs/hawk.toml diff --git a/codex-rs/hawk.toml b/codex-rs/hawk.toml deleted file mode 100644 index d9b69d5c08..0000000000 --- a/codex-rs/hawk.toml +++ /dev/null @@ -1,63 +0,0 @@ -preserve-uniform-field-visibility = true - -[[production]] -package = "codex-cli" -bin = "codex" -reason = "primary shipped Codex CLI" - -[[production]] -package = "codex-app-server" -bin = "codex-app-server" -reason = "standalone app-server release" - -[[production]] -package = "codex-responses-api-proxy" -bin = "codex-responses-api-proxy" -reason = "standalone responses API proxy release" - -[[exclude]] -crate = "codex_backend_openapi_models" -module = "models" -reason = "generated from the backend OpenAPI schema" - -[[exclude]] -crate = "codex_windows_sandbox" -file = "windows-sandbox-rs/src/lib.rs" -target = "cfg(not(windows))" -reason = "Windows sandbox APIs are consumed only by Windows products" - -[[exclude]] -crate = "codex_core" -module = "windows_sandbox" -target = "cfg(not(windows))" -reason = "Windows sandbox APIs are consumed only by Windows products" - -[[exclude]] -crate = "codex_utils_pty" -file = "utils/pty/src/process_group.rs" -target = "cfg(not(target_os = \"linux\"))" -reason = "parent-death signaling is consumed only by Linux products" - -[[override]] -lint = "hawk::dead_public" -crate = "codex_core" -item = "spawn_command_under_linux_sandbox" -level = "expect" -target = "cfg(not(target_os = \"linux\"))" -reason = "public re-export is consumed only by Linux products" - -[[override]] -lint = "hawk::dead_public" -crate = "codex_cli" -item = "run_command_under_landlock" -level = "expect" -target = "cfg(not(target_os = \"linux\"))" -reason = "public re-export is consumed only by Linux products" - -[[override]] -lint = "hawk::dead_public" -crate = "codex_cli" -item = "run_command_under_windows_sandbox" -level = "expect" -target = "cfg(not(windows))" -reason = "public re-export is consumed only by Windows products"