-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 963 Bytes
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 963 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
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "easyfps"
version = "0.1.0"
edition = "2021"
authors = ["Matteo"]
description = "A simple, lightweight FPS counter for fullscreen games"
[dependencies]
# Windows API
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_Graphics_Dwm",
"Win32_Graphics_Gdi",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_Security",
"Win32_System_Diagnostics_Etw",
"Win32_System_Diagnostics_Debug",
"Win32_UI_Shell",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_Performance",
"Win32_UI_Controls",
] }
# Graceful shutdown handler
ctrlc = "3.4"
# System tray
tray-icon = "0.19"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
parking_lot = "0.12"
once_cell = "1.19"
dirs = "5.0"
[build-dependencies]
winres = "0.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true