-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (58 loc) · 1.75 KB
/
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
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
[package]
name = "lua-framework"
version = "0.3.0"
edition = "2021"
# 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.10", 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.8"
strum = { version = "0.26", 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.58", features = [
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
"Win32_System_ProcessStatus",
"Win32_System_Console",
"Win32_System_Threading",
] }
# frida-gum 动态Hook
frida-gum = { version = "0.15", 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.8"
bitflags = "2.6"
semver = "1.0"
chrono = "0.4"
colored = "2.2"
[build-dependencies]
winres = "0.1"
[dev-dependencies]
env_logger = "0.11.5"