dyncvoke-data 0.1.0

Shared Windows FFI types and obfuscated-string helper for Dyncvoke
[package]
name = "dyncvoke-data"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
description = "Shared Windows FFI types and obfuscated-string helper for Dyncvoke"
keywords = ["windows", "ffi", "dyncvoke"]
categories = ["os::windows-apis", "no-std"]
documentation = "https://docs.rs/dyncvoke-data"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
rustdoc-args = ["--cfg", "docsrs"]

[lib]
name = "data"
path = "src/lib.rs"
doctest = false

[dependencies]
obfstr = { workspace = true }

[dependencies.windows-sys]
workspace = true
features = [
    "Win32_Foundation",
    "Win32_Security",
    "Win32_System",
    "Win32_System_IO",
    "Win32_System_Kernel",
    "Win32_System_Diagnostics_Debug",
    "Win32_System_Diagnostics_ToolHelp",
    "Win32_System_WindowsProgramming",
    "Win32_Storage_FileSystem",
    "Win32_System_Memory",
    "Win32_System_SystemInformation",
    "Win32_System_Threading",
    "Win32_Graphics",
    "Win32_Graphics_Printing",
    "Win32_Graphics_Gdi"
]