mirror of
https://github.com/openai/codex.git
synced 2026-09-15 12:08:01 +00:00
## What changed - Report `windows_mxc` from native MXC availability on Windows. - Allow MXC TTY launches and managed networking, using dedicated proxy listeners without requiring a shared-ingress restricting SID. - Reject MXC custom `argv0` and private-desktop launches, and continue failing closed when native MXC is unavailable. ## Testing Extend the Windows remote sandbox process-write test to cover MXC with both pipes and ConPTY. Retain coverage for rejecting MXC requests when native support is unavailable. GitOrigin-RevId: 80c5f319b9066d06b26f0a7eb7119a109e6ebef7
30 lines
756 B
TOML
30 lines
756 B
TOML
[package]
|
|
name = "codex-exec-server-protocol"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_exec_server_protocol"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
codex-file-system = { workspace = true }
|
|
codex-network-proxy = { workspace = true }
|
|
codex-protocol = { workspace = true }
|
|
codex-shell-command = { workspace = true }
|
|
codex-utils-path-uri = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["arbitrary_precision", "raw_value"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
codex-mxc-sandbox = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|