Files
2026-03-08 15:16:42 +05:30

18 lines
372 B
TOML

[package]
name = "stacktracer"
version = "0.1.0"
edition = "2024"
description = "A rust program to print the stack trace of a given thread"
[dependencies]
clap = { version = "4.5.60" }
winapi = { version = "0.3.9", features = [
"tlhelp32",
"processthreadsapi",
"handleapi",
"winnt",
"dbghelp",
"minwindef",
"basetsd",
"errhandlingapi",] }