mirror of
https://github.com/Whitecat18/apiparser
synced 2026-06-08 12:55:50 +00:00
33 lines
817 B
TOML
33 lines
817 B
TOML
[package]
|
|
name = "apiparser"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Manual API Parsing in Rust"
|
|
license = "MIT"
|
|
repository = "https://github.com/Whitecat18/apiparser"
|
|
readme = "README.md"
|
|
keywords = ["PEB", "hash", "windows", "rust", "redteam"]
|
|
categories = ["os", "security"]
|
|
authors = ["Smukx E", "@5mukx"]
|
|
|
|
[dependencies]
|
|
|
|
[dependencies.windows-sys]
|
|
version = "0.61.2"
|
|
features = [
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Kernel",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Threading",
|
|
"Win32_System_LibraryLoader",
|
|
"Wdk_System_SystemServices",
|
|
"Win32_System_SystemServices",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_System_IO",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_WindowsProgramming"
|
|
]
|
|
|