-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (44 loc) · 1.21 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
[package]
name = "Aperture"
version = "0.3.0"
edition = "2024"
description = "Diagnostic tui for Windows power users"
authors = ["stylebending"]
license = "MIT"
repository = "https://github.com/stylebending/Aperture"
homepage = "https://stylebending.github.io/Aperture/"
documentation = "https://github.com/stylebending/Aperture"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
dirs = "5.0"
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_System_Services",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_System_RestartManager",
"Win32_NetworkManagement_IpHelper",
"Win32_Networking_WinSock",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemInformation",
"Win32_System_Kernel",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Diagnostics",
"Win32_System_Environment",
"Win32_System_Registry",
"Win32_UI_WindowsAndMessaging",
] }
[profile.release]
opt-level = 3
lto = true
strip = true
[build-dependencies]
image = "0.25.10"
winres = "0.1.12"