checkpoint

This commit is contained in:
iceweasel-oai
2025-12-03 14:45:52 -08:00
parent a8d5ad37b8
commit ce9d7c59a4
15 changed files with 2375 additions and 148 deletions

View File

@@ -8,11 +8,35 @@ version.workspace = true
name = "codex_windows_sandbox"
path = "src/lib.rs"
[[bin]]
name = "codex-windows-sandbox-setup"
path = "src/bin/setup.rs"
[[bin]]
name = "codex-command-runner"
path = "src/bin/command_runner.rs"
[[bin]]
name = "runner-smoke"
path = "src/bin/runner_smoke.rs"
[[bin]]
name = "runner-stub"
path = "src/bin/runner_stub.rs"
[dependencies]
anyhow = "1.0"
base64 = { workspace = true }
dunce = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_NetworkManagement_WindowsFirewall",
"Win32_System_Com",
"Win32_System_Variant",
] }
[dependencies.codex-protocol]
package = "codex-protocol"
path = "../protocol"
@@ -40,10 +64,14 @@ features = [
"Win32_System_Console",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_ToolHelp",
"Win32_NetworkManagement_NetManagement",
"Win32_Networking_WinSock",
"Win32_System_LibraryLoader",
"Win32_System_Com",
"Win32_Security_Cryptography",
"Win32_Security_Authentication_Identity",
"Win32_UI_Shell",
"Win32_System_Registry",
]
version = "0.52"
[dev-dependencies]