mirror of
https://github.com/whokilleddb/stacktracer
synced 2026-06-06 17:00:04 +00:00
18 lines
372 B
TOML
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",] }
|