-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 881 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
[package]
name = "liquidbounce_lite"
version = "0.1.0"
edition = "2021"
authors = ["1zuna <[email protected]>"]
description = "A lightweight version of LiquidBounce utilizing DLL injection written in Rust."
license = "GNU GPLv3"
homepage = "https://liquidbounce.net/"
categories = ["game-hacking", "minecraft", "injector"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "liquidbounce"
crate-type = ["cdylib"]
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3.0"
anyhow = "1.0"
jni = "0.21"
[dependencies.windows]
version = "0.52"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
"Win32_System_LibraryLoader",
"Win32_System_Console",
"Win32_System_SystemServices",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
cc = "1.0"