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 system info 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_sys"
|
2021-08-03 10:01:09 +02:00
|
|
|
version = "0.35.0"
|
2019-12-10 04:57:55 +01:00
|
|
|
|
2020-02-10 21:32:10 +01:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-12-10 04:57:55 +01:00
|
|
|
[dependencies]
|
2021-08-03 10:01:09 +02:00
|
|
|
nu-errors = { path="../nu-errors", version = "0.35.0" }
|
|
|
|
nu-plugin = { path="../nu-plugin", version = "0.35.0" }
|
|
|
|
nu-protocol = { path="../nu-protocol", version = "0.35.0" }
|
|
|
|
nu-source = { path="../nu-source", version = "0.35.0" }
|
2020-01-31 23:45:33 +01:00
|
|
|
|
2021-06-22 07:22:33 +02:00
|
|
|
futures = { version="0.3.5", features=["compat", "io-compat"] }
|
2021-02-05 21:54:54 +01:00
|
|
|
futures-util = "0.3.12"
|
|
|
|
num-bigint = "0.3.1"
|
2021-06-06 01:15:30 +02:00
|
|
|
sysinfo = "0.18.2"
|
2020-02-04 07:51:14 +01:00
|
|
|
|
2019-12-10 04:57:55 +01:00
|
|
|
[build-dependencies]
|