1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "lodestone-client"
version.workspace = true
edition.workspace = true
description = "The in-game menu: injected into Minecraft, drawn in its own GL context."
[lib]
name = "lodestone_client"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
imgui = "0.12"
imgui-glow-renderer = "0.13"
glow = "0.13"
iced-x86 = { version = "1.21", default-features = false, features = ["std", "decoder", "encoder", "block_encoder", "instr_info", "intel"] }
jni-sys = "0.3"
[target.'cfg(windows)'.dependencies]
windows-sys.workspace = true
[target.'cfg(unix)'.dependencies]
libc = "0.2"