[codex] Raise app-server recursion limit (#27421)

## Summary

Unblock Rust release builds after tracing instrumentation increased the
async future query depth beyond rustc's default limit.

Set the `codex-app-server` crate recursion limit to 256. This changes
compilation only; runtime behavior is unchanged.

## Validation

- `just test -p codex-app-server`
- `cargo build --release --bin codex-app-server`
This commit is contained in:
Adam Perry @ OpenAI
2026-06-10 11:37:14 -07:00
committed by GitHub
Unverified
parent 636cc11398
commit 42415443d0
+1
View File
@@ -1,3 +1,4 @@
#![recursion_limit = "256"]
#![deny(clippy::print_stdout, clippy::print_stderr)]
use codex_arg0::Arg0DispatchPaths;