2022-01-14 06:20:53 +00:00
|
|
|
[package]
|
2022-03-13 18:30:27 +00:00
|
|
|
authors = ["The Nushell Project Developers", "procs creators"]
|
2022-01-14 06:20:53 +00:00
|
|
|
description = "Nushell system querying"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system"
|
2022-01-14 06:20:53 +00:00
|
|
|
name = "nu-system"
|
2024-05-01 22:19:20 +00:00
|
|
|
version = "0.93.1"
|
2022-01-14 06:20:53 +00:00
|
|
|
edition = "2021"
|
2022-03-22 20:25:38 +00:00
|
|
|
license = "MIT"
|
2022-01-14 06:20:53 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-01-14 06:20:53 +00:00
|
|
|
[dependencies]
|
2024-03-23 23:46:02 +00:00
|
|
|
libc = { workspace = true }
|
2024-03-07 22:40:31 +00:00
|
|
|
log = { workspace = true }
|
|
|
|
sysinfo = { workspace = true }
|
2022-01-14 06:20:53 +00:00
|
|
|
|
2022-09-29 18:37:48 +00:00
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2024-03-07 22:40:31 +00:00
|
|
|
nix = { workspace = true, default-features = false, features = ["fs", "term", "process", "signal"] }
|
2022-09-29 18:37:48 +00:00
|
|
|
|
2022-03-26 18:21:19 +00:00
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
2024-03-23 23:46:02 +00:00
|
|
|
procfs = { workspace = true }
|
2022-01-14 06:20:53 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-03-23 23:46:02 +00:00
|
|
|
libproc = { workspace = true }
|
|
|
|
mach2 = { workspace = true }
|
2022-01-14 06:20:53 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-03-07 22:40:31 +00:00
|
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
2022-10-30 13:29:41 +00:00
|
|
|
ntapi = "0.4"
|
2024-03-07 22:40:31 +00:00
|
|
|
once_cell = { workspace = true }
|
2024-03-23 23:46:02 +00:00
|
|
|
windows = { workspace = true, features = [
|
2024-01-04 17:17:19 +00:00
|
|
|
"Wdk_System_SystemServices",
|
|
|
|
"Wdk_System_Threading",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_System_Diagnostics_Debug",
|
|
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
|
|
"Win32_System_Kernel",
|
|
|
|
"Win32_System_Memory",
|
|
|
|
"Win32_System_ProcessStatus",
|
|
|
|
"Win32_System_SystemInformation",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_UI_Shell",
|
|
|
|
]}
|