-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 1019 Bytes
/
Cargo.toml
File metadata and controls
44 lines (36 loc) · 1019 Bytes
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
[package]
name = "litcher"
version = "0.4.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
memory-rs = "0.2.5"
simplelog = "0.8"
termcolor = "1.1"
windows-sys = {version = "0.35", features = [
"Win32_Foundation",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_XboxController",
"Win32_System_Console",
]}
simple_injector = { git = "https://github.com/etra0/simple_injector" }
imgui = { git = "https://github.com/imgui-rs/imgui-rs", rev = "cb8beeb" }
hudhook = "0.8.0"
lazy-re = "0.1.1"
anyhow = "1.0.65"
[replace]
"imgui:0.12.0" = { git = "https://github.com/imgui-rs/imgui-rs", rev = "cb8beeb" }
"imgui-sys:0.12.0" = { git = "https://github.com/imgui-rs/imgui-rs", rev = "cb8beeb" }
[build-dependencies]
embed-resource = "1.8"
cc ="1.0"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
name = "litcher"
[[bin]]
path = "src/main.rs"
name = "injector"