-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 1.26 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
[package]
name = "yap_bot_installer"
version = "5.1.1"
edition = "2021"
build = "build.rs"
[dependencies]
eframe = "0.28.1"
which = "6.0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
async-process = "2.3.1"
reqwest = { version = "0.11", features = ["json", "blocking"] }
rfd = "0.11.4"
indicatif = "0.17"
image = "0.24"
log = "0.4"
env_logger = "0.11"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
dirs = "5.0"
xdg = "2.4"
once_cell = "1.19"
webbrowser = "0.8"
arboard = "3.2.0"
include_dir = "0.7"
regex = "1.11.1"
rodio = "0.17"
rand = "0.8"
futures-util = "0.3"
egui_extras = "0.32.0"
resvg = "0.45.1"
usvg = "0.45.1"
tiny-skia = "0.11.4"
winreg = "0.52"
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Threading",
"Win32_System_Diagnostics_ToolHelp",
"Win32_Graphics_Gdi"
] }
open = "5.3.2"
ctrlc = "3.4"
systray = "0.4.0"
[build-dependencies]
winres = "0.1"
[[bin]]
name = "YapBotInstaller"
path = "src/main.rs"
[[bin]]
name = "TwitchYapBot"
path = "src/bin/TwitchYapBot/main.rs"
[[bin]]
name = "YapBotUpdater"
path = "src/bin/YapBotUpdater/main.rs"
[[bin]]
name = "YapBotTray"
path = "src/bin/YapBotTray/main.rs"