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-03-05 20:28:40 +00:00
|
|
|
version = "0.91.0"
|
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]
|
2022-08-02 14:53:50 +00:00
|
|
|
libc = "0.2"
|
2022-10-22 16:54:46 +00:00
|
|
|
log = "0.4"
|
2024-01-05 11:31:29 +00:00
|
|
|
sysinfo = "0.30"
|
2022-01-14 06:20:53 +00:00
|
|
|
|
2022-09-29 18:37:48 +00:00
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-09-04 20:41:28 +00:00
|
|
|
nix = { version = "0.27", 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]
|
2023-11-20 20:22:35 +00:00
|
|
|
procfs = "0.16"
|
2022-01-14 06:20:53 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-07-10 05:10:36 +00:00
|
|
|
libproc = "0.14"
|
2022-09-01 06:09:52 +00:00
|
|
|
mach2 = "0.4"
|
2022-01-14 06:20:53 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-01-05 13:31:38 +00:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
2022-10-30 13:29:41 +00:00
|
|
|
ntapi = "0.4"
|
2023-06-19 06:16:00 +00:00
|
|
|
once_cell = "1.18"
|
2024-01-04 17:17:19 +00:00
|
|
|
windows = { version = "0.52", features = [
|
|
|
|
"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",
|
|
|
|
]}
|