nushell/crates/nu_plugin_ps/Cargo.toml

29 lines
672 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"
version = "0.21.1"
[lib]
doctest = false
[dependencies]
nu-errors = {path = "../nu-errors", version = "0.21.1"}
nu-plugin = {path = "../nu-plugin", version = "0.21.1"}
nu-protocol = {path = "../nu-protocol", version = "0.21.1"}
nu-source = {path = "../nu-source", version = "0.21.1"}
num-bigint = "0.3.0"
2020-09-07 07:02:45 +02:00
futures = {version = "0.3.5", features = ["compat", "io-compat"]}
2020-04-09 00:28:20 +02:00
futures-timer = "3.0.2"
[dependencies.heim]
default-features = false
features = ["process"]
2020-07-05 22:12:44 +02:00
version = "0.1.0-beta.3"
[build-dependencies]