1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-30 14:49:26 +03:00
wezterm/procinfo/Cargo.toml
Wez Furlong f9c4855159 procinfo: windows: tweak and add more tracing
Use an alternative function to query the executable path for
a target process.

Add more tracing.

refs: #1896
2022-04-20 09:43:56 -07:00

24 lines
478 B
TOML

[package]
name = "procinfo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
log = "0.4"
luahelper = { path = "../luahelper" }
serde = {version="1.0", features = ["rc", "derive"]}
[target."cfg(windows)".dependencies]
ntapi = "0.3"
winapi = { version = "0.3", features = [
"handleapi",
"memoryapi",
"psapi",
"processthreadsapi",
"tlhelp32",
]}