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_dump/Cargo.toml | |
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_dump/Cargo.toml')
-rw-r--r-- | zluda_dump/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zluda_dump/Cargo.toml b/zluda_dump/Cargo.toml index b81ef13..80c7ddc 100644 --- a/zluda_dump/Cargo.toml +++ b/zluda_dump/Cargo.toml @@ -14,7 +14,7 @@ lz4-sys = "1.9" regex = "1.4"
[target.'cfg(windows)'.dependencies]
-winapi = { version = "0.3", features = ["libloaderapi", "debugapi"] }
+winapi = { version = "0.3", features = ["libloaderapi", "debugapi", "std"] }
wchar = "0.6"
detours-sys = { path = "../detours-sys" }
|