[package]
edition = "2024"
name = "winstrument"
version = "1.0.0"
authors = ["Yurii Antoniuk <imunproductive@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny Rust library to set undocumented Windows process instrumentation callback"
homepage = "https://github.com/imunproductive/winstrument"
readme = "README.md"
license = "Unlicense"
repository = "https://github.com/imunproductive/winstrument"
[lib]
name = "winstrument"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[dependencies.defer-rs]
version = "0.1"
[dependencies.ntapi]
version = "0.4"
[dependencies.thiserror]
version = "2.0"
[dependencies.windows]
version = "0.62"
features = [
"Win32_System_LibraryLoader",
"Win32_System_Diagnostics_Debug",
"Win32_System_Kernel",
"std",
]
[dependencies.windows-strings]
version = "0.5"