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"
|
2023-08-23 22:23:27 +02:00
|
|
|
version = "0.84.1"
|
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]
|
2022-08-02 16:53:50 +02:00
|
|
|
libc = "0.2"
|
2022-10-22 18:54:46 +02:00
|
|
|
log = "0.4"
|
2022-01-14 07:20:53 +01:00
|
|
|
|
2022-09-29 20:37:48 +02:00
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-08-23 22:23:27 +02:00
|
|
|
nix = { version = "0.26", 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]
|
2023-08-23 22:23:27 +02:00
|
|
|
procfs = "0.15"
|
2022-01-14 07:20:53 +01:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-07-10 07:10:36 +02:00
|
|
|
libproc = "0.14"
|
2022-09-01 08:09:52 +02:00
|
|
|
mach2 = "0.4"
|
2022-01-14 07:20:53 +01:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2023-08-25 10:54:01 +02:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-10-30 14:29:41 +01:00
|
|
|
ntapi = "0.4"
|
2023-06-19 08:16:00 +02:00
|
|
|
once_cell = "1.18"
|
2023-08-23 22:23:27 +02:00
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
"tlhelp32",
|
|
|
|
"fileapi",
|
|
|
|
"handleapi",
|
|
|
|
"ifdef",
|
|
|
|
"ioapiset",
|
|
|
|
"minwindef",
|
|
|
|
"pdh",
|
|
|
|
"psapi",
|
|
|
|
"synchapi",
|
|
|
|
"sysinfoapi",
|
|
|
|
"winbase",
|
|
|
|
"winerror",
|
|
|
|
"winioctl",
|
|
|
|
"winnt",
|
|
|
|
"oleauto",
|
|
|
|
"wbemcli",
|
|
|
|
"rpcdce",
|
|
|
|
"combaseapi",
|
|
|
|
"objidl",
|
|
|
|
"powerbase",
|
|
|
|
"netioapi",
|
|
|
|
"lmcons",
|
|
|
|
"lmaccess",
|
|
|
|
"lmapibuf",
|
|
|
|
"memoryapi",
|
|
|
|
"shellapi",
|
|
|
|
"std",
|
|
|
|
"securitybaseapi",
|
|
|
|
] }
|