-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (73 loc) · 2.15 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
73
74
75
76
77
78
79
########
# LLRT #
########
[package]
name = "grebuloff-llrt"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[lib]
crate-type = ["cdylib"]
[dependencies]
log = { workspace = true }
fern = { workspace = true }
chrono = { workspace = true }
tokio = { workspace = true }
windows = { workspace = true }
anyhow = { workspace = true }
rmp = { workspace = true }
rmp-serde = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
bytes = { workspace = true }
dll-syringe = { workspace = true, features = ["payload-utils"] }
grebuloff-macros = { path = "macros" }
grebuloff-rpc = { path = "rpc" }
ffxiv_client_structs = { path = "deps/FFXIVClientStructs/rust/lib", features = ["async-resolution"] }
ffxiv_client_structs_macros = { path = "deps/FFXIVClientStructs/rust/macros" }
msgbox = "0.7.0"
# deno_core = "0.191.0"
# deno_ast = { version = "0.27.1", features = ["transpiling"] }
inventory = "0.3.6"
itertools = "0.10.5"
rustc-hash = "1.1.0"
retour = { version = "0.3.0", features = ["static-detour"] }
uuid = { version = "1.4.0", features = ["v4", "fast-rng"] }
async-trait = "0.1.71"
[build-dependencies]
chrono = { workspace = true }
#############
# Workspace #
#############
[workspace]
members = [".", "macros", "injector", "loader", "rpc", "hlrt"]
default-members = [".", "injector", "loader", "rpc", "hlrt"]
[workspace.dependencies]
dll-syringe = { version = "0.15.2", default-features = false }
tokio = { version = "1.28.2", features = ["full"] }
anyhow = { version = "1.0.71" }
log = { version = "0.4" }
fern = { version = "0.6.2" }
chrono = { version = "0.4.26" }
rmp = "0.8.11"
rmp-serde = "1.1.1"
serde = { version = "1.0.155", features = ["derive"] }
serde_json = "1.0.96"
bytes = "1.4.0"
[workspace.dependencies.windows]
version = "0.48.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_Security_Authorization",
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader",
"Win32_System_ProcessStatus",
"Win32_System_SystemServices",
"Win32_Graphics_Gdi",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D"
]