1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-26 23:58:28 +03:00
wezterm/procinfo/Cargo.toml

28 lines
601 B
TOML
Raw Normal View History

2022-01-01 05:30:52 +03:00
[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
[features]
default = ["lua"]
lua = ["dep:luahelper", "dep:wezterm-dynamic"]
2022-01-01 05:30:52 +03:00
[dependencies]
libc = "0.2"
log = "0.4"
luahelper = { path = "../luahelper", optional = true }
wezterm-dynamic = { path = "../wezterm-dynamic", optional = true }
2022-01-01 05:30:52 +03:00
[target."cfg(windows)".dependencies]
ntapi = "0.4"
2022-01-01 05:30:52 +03:00
winapi = { version = "0.3", features = [
"handleapi",
"memoryapi",
"psapi",
"processthreadsapi",
"shellapi",
2022-01-01 05:30:52 +03:00
"tlhelp32",
]}