diff options
author | Andrzej Janik <[email protected]> | 2020-01-05 19:28:21 +0100 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2020-01-05 19:28:21 +0100 |
commit | 611e28953170a4e5363c033fd3fb279b1190c385 (patch) | |
tree | 3b3c5b35031dbce70a1a10c646d93c7916218836 /Cargo.toml | |
download | ZLUDA-611e28953170a4e5363c033fd3fb279b1190c385.tar.gz ZLUDA-611e28953170a4e5363c033fd3fb279b1190c385.zip |
Add nvcuda.dll injector
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e219645 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "not_cuda" +version = "0.1.0" +authors = ["Andrzej Janik <[email protected]>"] +edition = "2018" + +[lib] +name = "not_cuda" +path = "src/lib.rs" +crate-type = ["cdylib"] + +[[bin]] +name = "not_cuda" +path = "src/bin.rs" + +[dependencies] +detours-sys = "0.1" +clap = "2.33"
\ No newline at end of file |