-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
65 lines (63 loc) · 1.55 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
[workspace]
members = [
"archives/th19netdelayemulate",
"archives/th19onlinevsfix",
"archives/th19padlight",
"archives/th19replayplayer",
"archives/th19replayplayer-lib",
"archives/th19replayrecorder",
"archives/th19savesettingsseparately",
"archives/th19seed",
"junowen",
"junowen-lib",
"junowen-server",
"th19loader",
]
default-members = ["junowen"]
resolver = "2"
[workspace.package]
version = "1.1.0-beta.1"
authors = ["Progre"]
license = "GPL-3.0"
[workspace.dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
async-trait = "0.1.81"
bytes = "1.7.1"
clipboard-win = "5.4.0"
junowen-lib = { path = "./junowen-lib" }
rmp-serde = "1.3.0"
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
static_vcruntime = "2.0"
thiserror = "1.0.63"
tokio = { version = "1.39.3", features = [
"rt",
"macros",
"rt-multi-thread",
"time"
] }
toml = "0.8.19"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"local-time"
] }
windows = { version = "0.58.0", features = [
"Win32_Foundation",
"Win32_Graphics_Direct3D9",
"Win32_Graphics_Gdi",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
] }