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