-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 760 Bytes
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
[package]
name = "lang_switcher_rust"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
eframe = "0.24"
sysinfo = "0.29.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.24"
log = "0.4"
env_logger = "0.10"
open = "3.2"
widestring = "0.5"
winapi = { version = "0.3", features = ["winuser", "windef", "minwindef", "shellapi", "wingdi"] }
dirs = "5.0"
winit = "0.30"
tray-icon = "0.21" # برای system tray
ico = "0.3"
[build-dependencies]
winres = "0.1"
[[bin]]
name = "lang_switcher_rust"
path = "src/main.rs"
# این خط باعث میشه که کنسول باز نشه
windows_subsystem = "windows"
[[bin]]
name = "watcher"
path = "src/bin/watcher.rs"
windows_subsystem = "windows"