From ecc7eb08f7e80e17c09de8955c82e4da461969ad Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Mon, 20 Apr 2026 08:47:27 -0700 Subject: [PATCH] chore: enable await-holding clippy lints Follow-up to https://github.com/openai/codex/pull/18178, where we said the await-holding clippy rule would be enabled separately. Enable `await_holding_lock` and `await_holding_invalid_type` after the preceding commits fixed or explicitly documented the current offenders. --- codex-rs/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/Cargo.toml b/codex-rs/Cargo.toml index b1a8ae000a..4b348371b8 100644 --- a/codex-rs/Cargo.toml +++ b/codex-rs/Cargo.toml @@ -380,6 +380,8 @@ zeroize = "1.8.2" rust = {} [workspace.lints.clippy] +await_holding_invalid_type = "deny" +await_holding_lock = "deny" expect_used = "deny" identity_op = "deny" manual_clamp = "deny"