forked from veeenu/darksoulsiii-practice-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (54 loc) · 1.58 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
[workspace]
resolver = "2"
members = [
"practice-tool",
"lib/libds3",
"lib/macro-param",
"lib/param-tinkerer",
"lib/no-logo",
"lib/param-mod",
"lib/scripts",
"xtask",
]
[workspace.package]
version = "1.6.3"
authors = ["Andrea Venuta <[email protected]>"]
[profile.dev]
opt-level = 2
debug = 2
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[workspace.dependencies]
imgui = "0.12"
once_cell = "1.19.0"
parking_lot = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
hudhook = { version = "0.7.0", features = ["dx11", "inject"], default-features = false }
practice-tool-core = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" }
practice-tool-tasks = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" }
[workspace.dependencies.windows]
version = "0.54.0"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_UI_Input_XboxController",
]
# TODO: remove this once the fix to imgui-rs/imgui-rs#775 gets released.
[patch.'crates-io']
imgui = { git = "https://github.com/imgui-rs/imgui-rs", rev = "cb8beeb" }
# [patch.'crates-io']
# hudhook = { path = "../hudhook" }
#
# [patch.'https://github.com/veeenu/practice-tool-core']
# practice-tool-core = { path = "../practice-tool-core" }
# practice-tool-tasks = { path = "../practice-tool-core/tasks" }