manualmap 0.2.1

Manually map PE to process memory.
[package]

name = "manualmap"

authors = ['Kurosh Dabbagh Escalante (@_Kudaes_)']

version = "0.2.1"

description = "Manually map PE to process memory."

license = "MIT"

repository = "https://github.com/Kudaes/DInvoke_rs"

keywords = ["dinvoke", "manualmap", "PE"]

edition = "2021"



# From https://stackoverflow.com/questions/29008127/why-are-rust-executables-so-huge

[profile.release]

strip = true  



[dependencies]

dinvoke = "0.2.1"

dinvoke_data = "0.2.1"

litcrypt2 = "=0.1.2"

os_info = { version = "3.0", default-features = false }

winapi = {version = "0.3.9", features = ["ntdef"]}



[dependencies.windows]

version = "0.62"

features = [

    "Win32_Foundation",

    "Win32_Security",

    "Win32_System",

    "Win32_System_IO",

    "Win32_System_Kernel",

    "Win32_System_Diagnostics_Debug",

    "Win32_System_Diagnostics_ToolHelp",

    "Win32_System_WindowsProgramming",

    "Wdk_Foundation",

    "Win32_Storage_FileSystem",

    "Win32_System_Memory",

    "Win32_System_SystemServices",

    "Win32_System_Threading"

]