-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (44 loc) · 915 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
41
42
43
44
45
46
47
48
49
[package]
name = "sven_coop_hook"
version = "0.1.0"
authors = ["rkr35"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[profile.release]
codegen-units = 1
debug = true
incremental = false
lto = "fat"
panic = "abort"
[features]
#default = ["single_thread_verifier"]
default = []
single_thread_verifier = []
[build-dependencies]
bindgen = "0.53"
[dependencies]
bstr = "0.2"
detours-sys = { git = "https://github.com/rkr35/detours" }
log = "0.4"
once_cell = { version = "1.12" }
rustc-hash = { version = "1.1", default-features = false }
simplelog = "0.12"
static_assertions = "1.1"
sven_coop_hook_macros = { path = "macros" }
thiserror = "1.0"
ultraviolet = "0.9"
wchar = "0.11"
winapi = { version = "0.3", features = [
"consoleapi",
"errhandlingapi",
"libloaderapi",
"memoryapi",
"minwindef",
"processthreadsapi",
"psapi",
"synchapi",
"wincon",
"winnt",
"winuser",
]}