mirror of
https://github.com/openai/codex.git
synced 2026-08-29 14:09:35 +00:00
## What changed - Move the reusable WebSocket relay, registration, frame capture, and encryption assertion helpers into `codex-exec-server-test-support`. - Re-export the helpers from the existing relay test module so its callers keep the same interface. - Add the Cargo dependencies and Bazel proto compile data required by the shared support module. GitOrigin-RevId: 0383149c79ef86cb5e64a09baec41332f9eec4c6
25 lines
553 B
TOML
25 lines
553 B
TOML
[package]
|
|
name = "codex-exec-server-test-support"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
codex-exec-server = { workspace = true }
|
|
codex-http-client = { workspace = true }
|
|
futures = { workspace = true }
|
|
prost = "0.14.3"
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "net", "time"] }
|
|
tokio-tungstenite = { workspace = true }
|
|
wiremock = { workspace = true }
|