-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
31 lines (29 loc) · 1001 Bytes
/
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
[package]
# меняйте имя тут! (до 15-ти символов)
name = "app123"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = {version = "0.29.1", features = ["serde"]}
eframe = { version = "0.29.1", features = ["glow", "serde"] }
emath = "0.29.1"
egui_extras = { version = "0.29.1", features = ["image"] }
log = "0.4.22"
env_logger = "0.11.5"
serde = { version = "1.0.210" , features = ["derive"] }
serde_json = { version = "1.0.128"}
sysinfo = "0.31.4"
clap = { version = "4.5.18", features = ["derive"]}
windows = { version = "0.58.0", features = [
"Win32_Foundation",
"System",
"Win32_UI_WindowsAndMessaging",
"Win32_Graphics_Gdi",
"Win32_System_Diagnostics_Debug",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_UI_Input_KeyboardAndMouse"
] }
egui-notify = "0.17.0"
reqwest = { version = "0.12.8", features = ["blocking"]}