forked from TotemArts/RenegadeX-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 919 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "renxhook"
version = "0.1.0"
edition = "2018"
[lib]
name = "dinput8"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.51"
detour = { git = "https://github.com/Hpmason/detour-rs", branch = "fix-nightly1.67.0-changes" }
lazy_static = "1.4.0"
libloading = "0.7.2"
sha2 = "0.10.0"
widestring = "1.0.2"
zerocopy = "0.6.1"
paste = "1.0.11"
[dependencies.windows]
version = "0.43.0"
features = [
"interface",
"implement",
"Data_Xml_Dom",
"Win32_Foundation",
"Win32_Security",
"Win32_System_Com",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_Media_Audio",
"Win32_Media_Audio_XAudio2",
"Win32_Media_Multimedia",
]