mirror of
https://github.com/wez/wezterm.git
synced 2024-11-30 14:49:26 +03:00
f9c4855159
Use an alternative function to query the executable path for a target process. Add more tracing. refs: #1896
24 lines
478 B
TOML
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",
|
|
]}
|
|
|