nushell/crates/nu_plugin_ps/Cargo.toml

25 lines
608 B
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
description = "A process list plugin for Nushell"
2020-07-05 22:12:44 +02:00
edition = "2018"
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu_plugin_ps"
2021-02-16 07:20:05 +01:00
version = "0.27.0"
[lib]
doctest = false
[dependencies]
2021-02-16 07:20:05 +01:00
nu-errors = { path = "../nu-errors", version = "0.27.0" }
nu-plugin = { path = "../nu-plugin", version = "0.27.0" }
nu-protocol = { path = "../nu-protocol", version = "0.27.0" }
nu-source = { path = "../nu-source", version = "0.27.0" }
2021-02-05 21:54:54 +01:00
num-bigint = "0.3.1"
2020-09-07 07:02:45 +02:00
2021-02-05 21:54:54 +01:00
futures = { version = "0.3.12", features = ["compat", "io-compat"] }
2020-04-09 00:28:20 +02:00
futures-timer = "3.0.2"
2021-02-04 18:59:24 +01:00
sysinfo = "0.16.1"
[build-dependencies]