dbgscope 0.1.0

Typed WinDbg/DbgEng debug sessions, with kernel pool and user heap walkers built on them.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "dbgscope"
version = "0.1.0"
build = false
exclude = [
    ".github/",
    ".cursor/",
    "AGENTS.md",
    "CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed WinDbg/DbgEng debug sessions, with kernel pool and user heap walkers built on them."
documentation = "https://docs.rs/dbgscope"
readme = "README.md"
keywords = [
    "windbg",
    "dbgeng",
    "debugging",
    "kernel",
    "windows",
]
categories = [
    "development-tools::debugging",
    "os::windows-apis",
]
license = "MIT"
repository = "https://github.com/glslang/dbgscope"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
    "x86_64-pc-windows-msvc",
    "aarch64-pc-windows-msvc",
]

[lib]
name = "dbgscope"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

[[example]]
name = "kdtest"
path = "examples/kdtest.rs"

[[example]]
name = "register_description"
path = "examples/register_description.rs"

[[example]]
name = "scope_restore"
path = "examples/scope_restore.rs"

[[example]]
name = "session_fuzz"
path = "examples/session_fuzz.rs"

[[example]]
name = "split_open"
path = "examples/split_open.rs"

[[example]]
name = "typed_context"
path = "examples/typed_context.rs"

[[example]]
name = "user_heap_smoke"
path = "examples/user_heap_smoke.rs"

[dependencies.hex]
version = "0.4.3"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.windows]
version = "0.62.2"
features = [
    "Win32_Foundation",
    "Win32_System_Diagnostics_Debug",
    "Win32_System_Diagnostics_Debug_Extensions",
    "Win32_System_SystemInformation",
]

[dependencies.windows-core]
version = "0.62.2"

[dev-dependencies.windows]
version = "0.62.2"
features = [
    "Win32_System_Memory",
    "Win32_System_Threading",
]