1 parent 88b261d commit f5078c8Copy full SHA for f5078c8
1 file changed
crates/deep-code-agent/Cargo.toml
@@ -34,10 +34,16 @@ seccompiler = "0.5"
34
libc = "0.2"
35
36
# Windows sandbox backend (Job Object: process-tree kill + resource limits).
37
+# Job Object APIs span several windows-sys features: CreateJobObjectW needs
38
+# Win32_Security (SECURITY_ATTRIBUTES); the EXTENDED_LIMIT struct needs
39
+# Win32_System_Threading (+ Win32_System_IO for its IO_COUNTERS field).
40
[target.'cfg(target_os = "windows")'.dependencies]
41
windows-sys = { version = "0.59", features = [
42
"Win32_Foundation",
43
+ "Win32_Security",
44
+ "Win32_System_IO",
45
"Win32_System_JobObjects",
46
+ "Win32_System_Threading",
47
] }
48
49
[dev-dependencies]
0 commit comments