diff --git a/bastion-executor/Cargo.toml b/bastion-executor/Cargo.toml index 4881a532..2028ad11 100644 --- a/bastion-executor/Cargo.toml +++ b/bastion-executor/Cargo.toml @@ -33,8 +33,12 @@ lightproc = { version = "=0.3.3-alpha.0", "path" = "../lightproc" } numanji = { version = "^0.1", optional = true, default-features = false } allocator-suite = { version = "^0.1", optional = true, default-features = false } -[dev-dependencies] -proptest = "^0.9" - [target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies] jemallocator = { version = "^0.3", optional = true, default-features = false } + +[target.'cfg(target_os = "windows")'.dependencies] +winapi = "^0.2.8" +kernel32-sys = "^0.2.2" + +[dev-dependencies] +proptest = "^0.9"