-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (60 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
74 lines (60 loc) · 1.79 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "lua-framework"
version = "0.4.3"
edition = "2024"
rust-version = "1.88"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = ["luaf-include", "luaf-libffi"]
[workspace.dependencies]
mlua = { version = "0.11", features = ["luajit", "vendored"] }
log = { version = "0.4", features = ["std"] }
anyhow = "1.0"
thiserror = "2.0"
parking_lot = { version = "0.12", features = ["arc_lock"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.9"
strum = { version = "0.27", features = ["derive"] }
[lib]
crate-type = ["cdylib"]
[dependencies]
luaf-include = { path = "./luaf-include", features = ["log"] }
mlua = { workspace = true, features = ["send", "serialize"] }
# 如果本地没有以下依赖,请使用注释的版本
safetyhook = { path = "../../safetyhook-pure-rs" }
# safetyhook = { git = "https://github.com/eigeen/safetyhook-rs.git" }
cimgui = { path = "../../cimgui-linking-rs/cimgui" }
# cimgui = { git = "https://github.com/eigeen/cimgui-rs.git" }
windows = { version = "0.62", features = [
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
"Win32_System_ProcessStatus",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_System_Memory"
] }
# frida-gum 动态Hook
frida-gum = { version = "0.17", features = [
"auto-download",
"invocation-listener",
] }
log.workspace = true
anyhow.workspace = true
parking_lot.workspace = true
thiserror.workspace = true
serde.workspace = true
rand.workspace = true
serde_json.workspace = true
strum.workspace = true
toml = "0.9"
bitflags = "2.9"
semver = "1.0"
chrono = "0.4"
colored = "3.0"
[build-dependencies]
winres = "0.1"
[dev-dependencies]
env_logger = "0.11"