mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 15:04:32 +03:00
28 lines
601 B
TOML
28 lines
601 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
|
|
[features]
|
|
default = ["lua"]
|
|
lua = ["dep:luahelper", "dep:wezterm-dynamic"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
luahelper = { path = "../luahelper", optional = true }
|
|
wezterm-dynamic = { path = "../wezterm-dynamic", optional = true }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
ntapi = "0.3"
|
|
winapi = { version = "0.3", features = [
|
|
"handleapi",
|
|
"memoryapi",
|
|
"psapi",
|
|
"processthreadsapi",
|
|
"shellapi",
|
|
"tlhelp32",
|
|
]}
|
|
|