Remove the debug-client CLI entrypoint#25067
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: dc4c258b95
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -1,310 +0,0 @@ | |||
| mod client; | |||
There was a problem hiding this comment.
Restore a Cargo target before deleting main.rs
With this entrypoint removed while codex-rs/Cargo.toml still lists "debug-client" as a workspace member and debug-client/Cargo.toml has no [lib]/[[bin]], the workspace no longer parses: cargo metadata --no-deps --format-version 1 from codex-rs fails with no targets specified in the manifest. This blocks routine workspace commands such as just test -p ... until the package is removed from the workspace or given another target.
Useful? React with 👍 / 👎.
Deletes
codex-rs/debug-client/src/main.rsas one step in removing the stale app-server debug client.This intentionally leaves Cargo workspace and lockfile cleanup for a later follow-up PR.