mirror of
https://github.com/PatchRequest/BusyWork
synced 2026-06-09 16:04:04 +00:00
c39c4dbfc1
Compute: 6→14 tasks (fibonacci, xor cipher, collatz, string ops, bubble sort, bitwise, pi approx, permutations) Memory: 4→10 tasks (heap fragmentation, ring buffer, binary search, scatter/gather, interleave) Filesystem: 4→12 tasks (Program Files, fonts, drivers, prefetch, logs, DLL stats, user profile) Registry: 4→10 tasks (env vars, network config, CPU info, fonts, startup programs, file associations) WinAPI: 4→16 tasks (system metrics, cursor, drives, volumes, disk space, FindFile, modules, VirtualQuery) Network: 3→7 tasks (24 DNS hosts, 11 HTTP endpoints, 7 NTP servers, HEAD, POST, TCP probes) Crypto: 2→7 tasks (SHA-512, SHA-1, MD5 via BCrypt, AES encrypt, RNG algorithms)
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "busywork"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
bitflags = "2"
|
|
sha2 = { version = "0.10", optional = true }
|
|
md-5 = { version = "0.10", optional = true }
|
|
flate2 = { version = "1", optional = true }
|
|
|
|
[dependencies.windows]
|
|
version = "0.58"
|
|
optional = true
|
|
|
|
[features]
|
|
default = [
|
|
"cat-compute",
|
|
"cat-memory",
|
|
"cat-filesystem",
|
|
"cat-registry",
|
|
"cat-winapi",
|
|
"cat-network",
|
|
"cat-crypto",
|
|
]
|
|
cat-compute = ["dep:sha2", "dep:md-5", "dep:flate2"]
|
|
cat-memory = []
|
|
cat-filesystem = []
|
|
cat-registry = [
|
|
"dep:windows",
|
|
"windows/Win32_System_Registry",
|
|
"windows/Win32_Foundation",
|
|
]
|
|
cat-winapi = [
|
|
"dep:windows",
|
|
"windows/Win32_UI_WindowsAndMessaging",
|
|
"windows/Win32_System_Diagnostics_ToolHelp",
|
|
"windows/Win32_System_SystemInformation",
|
|
"windows/Win32_System_DataExchange",
|
|
"windows/Win32_Foundation",
|
|
"windows/Win32_System_Threading",
|
|
"windows/Win32_Storage_FileSystem",
|
|
"windows/Win32_System_Memory",
|
|
"windows/Win32_System_LibraryLoader",
|
|
]
|
|
cat-network = []
|
|
cat-crypto = [
|
|
"dep:windows",
|
|
"windows/Win32_Security_Cryptography",
|
|
"windows/Win32_Foundation",
|
|
]
|