[package]
edition = "2021"
name = "procmod-hook"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inline function hooking and detouring for x86_64"
readme = "README.md"
keywords = [
"hooking",
"detour",
"game",
"modding",
"x86_64",
]
categories = [
"game-development",
"os",
]
license = "MIT"
repository = "https://github.com/procmod/hook"
[lib]
name = "procmod_hook"
path = "src/lib.rs"
[dependencies.iced-x86]
version = "1"
features = [
"std",
"decoder",
"block_encoder",
"instr_info",
]
default-features = false
[dependencies.thiserror]
version = "2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_Memory",
"Win32_Foundation",
]