2019-12-10 04:57:55 +01:00
|
|
|
[package]
|
2020-04-06 09:16:14 +02:00
|
|
|
authors = ["The Nu Project Contributors"]
|
2019-12-17 18:07:00 +01:00
|
|
|
description = "A process list plugin for Nushell"
|
2020-07-05 22:12:44 +02:00
|
|
|
edition = "2018"
|
2019-12-17 18:07:00 +01:00
|
|
|
license = "MIT"
|
2020-07-05 22:12:44 +02:00
|
|
|
name = "nu_plugin_ps"
|
2021-01-06 03:16:08 +01:00
|
|
|
version = "0.25.1"
|
2019-12-10 04:57:55 +01:00
|
|
|
|
2020-01-31 23:45:33 +01:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-12-10 04:57:55 +01:00
|
|
|
[dependencies]
|
2021-01-06 03:16:08 +01:00
|
|
|
nu-errors = {path = "../nu-errors", version = "0.25.1"}
|
|
|
|
nu-plugin = {path = "../nu-plugin", version = "0.25.1"}
|
|
|
|
nu-protocol = {path = "../nu-protocol", version = "0.25.1"}
|
|
|
|
nu-source = {path = "../nu-source", version = "0.25.1"}
|
2019-12-10 04:57:55 +01:00
|
|
|
|
2020-09-21 19:28:31 +02:00
|
|
|
num-bigint = "0.3.0"
|
2020-09-07 07:02:45 +02:00
|
|
|
|
2020-09-21 19:28:31 +02:00
|
|
|
futures = {version = "0.3.5", features = ["compat", "io-compat"]}
|
2020-04-09 00:28:20 +02:00
|
|
|
futures-timer = "3.0.2"
|
2019-12-10 04:57:55 +01:00
|
|
|
|
2020-02-04 07:51:14 +01:00
|
|
|
[dependencies.heim]
|
|
|
|
default-features = false
|
2020-05-30 22:54:33 +02:00
|
|
|
features = ["process"]
|
2020-12-15 20:27:21 +01:00
|
|
|
version = "0.1.0-rc.1"
|
2020-02-04 07:51:14 +01:00
|
|
|
|
2019-12-10 04:57:55 +01:00
|
|
|
[build-dependencies]
|