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
[package]
name = "lodestone"
version = "0.1.0"
edition = "2021"
description = "Fully external HotSpot/Minecraft object navigator and trainer. No injection: ReadProcessMemory/WriteProcessMemory only."
[dependencies]
eframe = { version = "0.29", default-features = false, features = ["glow", "default_fonts"] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_ProcessStatus",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
] }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true
[[bin]]
name = "lodestone"
path = "src/bin/lodestone.rs"
[[bin]]
name = "lodestone-menu"
path = "src/bin/menu.rs"