21 lines
406 B
TOML
21 lines
406 B
TOML
[package]
|
|
name = "pdb-helper"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4.0"
|
|
anyhow = "1.0"
|
|
once_cell = "1.17.1"
|
|
pdb = "0.8.0"
|
|
|
|
[dependencies.windows]
|
|
version = "0.44"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] |