mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
For app-server development it's been helpful to be able to trigger some test flows end-to-end and print the JSON-RPC messages sent between client and server.
17 lines
446 B
TOML
17 lines
446 B
TOML
[package]
|
|
name = "codex-app-server-test-client"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
codex-app-server-protocol = { workspace = true }
|
|
codex-protocol = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|