mirror of
https://github.com/Whitecat18/PE-Analyzer.rs
synced 2026-06-08 12:55:29 +00:00
60ac4d0d40
A Rust-based PE (Portable Executable) file analyzer that provides detailed information about Windows executable files.
19 lines
323 B
TOML
19 lines
323 B
TOML
[package]
|
|
name = "PE_Analyzer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["@5mukx", "5mukx.site"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.5.0"
|
|
winapi = { version = "0.3.9", features = [
|
|
"winnt",
|
|
"memoryapi",
|
|
"processthreadsapi",
|
|
"synchapi",
|
|
"fileapi",
|
|
"errhandlingapi",
|
|
"handleapi",
|
|
"heapapi"
|
|
] }
|