mirror of
https://github.com/PatchRequest/BusyWork
synced 2026-06-09 16:04:04 +00:00
59 lines
1.5 KiB
TOML
59 lines
1.5 KiB
TOML
[package]
|
|
name = "busywork"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Sleep replacement that executes real, varied work to break behavioral pattern matching"
|
|
license = "MIT"
|
|
repository = "https://github.com/PatchRequest/BusyWork"
|
|
readme = "README.md"
|
|
keywords = ["sleep", "evasion", "pattern-breaking", "winapi", "busywork"]
|
|
categories = ["os::windows-apis"]
|
|
|
|
[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",
|
|
]
|