-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 771 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
[package]
name = "task_manager_cli"
version = "0.1.0"
edition = "2021"
description = "A command-line Windows Task Manager built with raw Win32 APIs"
license = "MIT"
readme = "README.md"
keywords = ["windows", "task-manager", "process", "cli", "win32"]
categories = ["command-line-utilities", "os::windows-apis"]
[dependencies]
# Windows API bindings - raw Win32 calls
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
"Win32_System_LibraryLoader",
"Win32_Security",
"Win32_NetworkManagement_IpHelper",
"Win32_Networking_WinSock",
] }
# CLI rendering with refresh capability
crossterm = "0.28"