[package]
edition = "2024"
rust-version = "1.98.0"
name = "wdext"
version = "0.1.0"
authors = ["takubokudori <takubokudori@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A DbgEng wrapper framework"
homepage = "https://github.com/takubokudori/wdext"
readme = "README.md"
keywords = [
"windows",
"dbgeng",
"debug",
"debugger",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/takubokudori/wdext"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[lib]
name = "wdext"
path = "src/lib.rs"
[[example]]
name = "client"
path = "examples/client.rs"
[[test]]
name = "test_control"
path = "tests/test_control.rs"
[[test]]
name = "test_data_spaces"
path = "tests/test_data_spaces.rs"
[[test]]
name = "test_dbgmodel"
path = "tests/test_dbgmodel.rs"
[[test]]
name = "test_debug_extension_initialize"
path = "tests/test_debug_extension_initialize.rs"
[[test]]
name = "test_debug_extension_provide_value"
path = "tests/test_debug_extension_provide_value.rs"
[[test]]
name = "test_debug_extension_query_value_names"
path = "tests/test_debug_extension_query_value_names.rs"
[[test]]
name = "test_event_callbacks"
path = "tests/test_event_callbacks.rs"
[[test]]
name = "test_execute"
path = "tests/test_execute.rs"
[[test]]
name = "test_execution"
path = "tests/test_execution.rs"
[[test]]
name = "test_global_output_callbacks"
path = "tests/test_global_output_callbacks.rs"
[[test]]
name = "test_input_callbacks"
path = "tests/test_input_callbacks.rs"
[[test]]
name = "test_known_struct_output"
path = "tests/test_known_struct_output.rs"
[[test]]
name = "test_known_struct_output_ex"
path = "tests/test_known_struct_output_ex.rs"
[[test]]
name = "test_list_entry"
path = "tests/test_list_entry.rs"
[[test]]
name = "test_output_callbacks"
path = "tests/test_output_callbacks.rs"
[[test]]
name = "test_register_command"
path = "tests/test_register_command.rs"
[[test]]
name = "test_registers"
path = "tests/test_registers.rs"
[[test]]
name = "test_strings"
path = "tests/test_strings.rs"
[[test]]
name = "test_symbol_group"
path = "tests/test_symbol_group.rs"
[[test]]
name = "test_symbols"
path = "tests/test_symbols.rs"
[[test]]
name = "test_typed_list_entry"
path = "tests/test_typed_list_entry.rs"
[[test]]
name = "test_util"
path = "tests/test_util.rs"
[[test]]
name = "test_windbg_extension_apis"
path = "tests/test_windbg_extension_apis.rs"
[dependencies.bitflags]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Diagnostics_Debug_Extensions",
"Win32_System_Kernel",
"Win32_System_Memory",
"Win32_System_Ole",
"Win32_System_SystemInformation",
"Win32_System_Variant",
"Win32_UI_WindowsAndMessaging",
]
[dependencies.windows-core]
version = "0.62"
[dependencies.windy]
version = "0.4.0"
[dependencies.windy-macros]
version = "0.3.0"
[dependencies.zerocopy]
version = "0.8.56"
features = ["derive"]
[dev-dependencies.clap]
version = "4.6"
features = ["derive"]
[dev-dependencies.once_cell]
version = "1"