diff options
author | Andrzej Janik <[email protected]> | 2021-02-20 21:40:19 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-20 21:40:19 +0100 |
commit | 36514bd6ebcc22fde93e1fc52b3e336da0683bfb (patch) | |
tree | 2bf3da943fddb7c4029fe9bd234ad1ceac00e8ab /zluda_inject | |
parent | 972f612562dc534ad605bfc5a00bc908ddd8b3de (diff) | |
download | ZLUDA-36514bd6ebcc22fde93e1fc52b3e336da0683bfb.tar.gz ZLUDA-36514bd6ebcc22fde93e1fc52b3e336da0683bfb.zip |
Improve ZLUDA injection (#37)
Improve injector&redirector so it's no longer required to manually mess with files if the application links nvcuda.dll. Additionally inject into child processes
Diffstat (limited to 'zluda_inject')
-rw-r--r-- | zluda_inject/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zluda_inject/Cargo.toml b/zluda_inject/Cargo.toml index 7576e08..1181a21 100644 --- a/zluda_inject/Cargo.toml +++ b/zluda_inject/Cargo.toml @@ -9,5 +9,5 @@ name = "zluda_with" path = "src/main.rs" [target.'cfg(windows)'.dependencies] -winapi = { version = "0.3", features = ["jobapi2", "processthreadsapi", "std", "synchapi", "winbase"] } +winapi = { version = "0.3", features = ["jobapi2", "processthreadsapi", "synchapi", "winbase", "std"] } detours-sys = { path = "../detours-sys" } |