2019-12-10 03:57:55 +00:00
|
|
|
[package]
|
|
|
|
name = "nu_plugin_sys"
|
2020-01-29 02:17:02 +00:00
|
|
|
version = "0.9.0"
|
2019-12-10 03:57:55 +00:00
|
|
|
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
|
|
|
|
edition = "2018"
|
2019-12-17 17:07:00 +00:00
|
|
|
description = "A system info plugin for Nushell"
|
|
|
|
license = "MIT"
|
2019-12-10 03:57:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-01-29 02:17:02 +00:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.9.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.9.0" }
|
|
|
|
nu-source = { path = "../nu-source", version = "0.9.0" }
|
|
|
|
nu-errors = { path = "../nu-errors", version = "0.9.0" }
|
2020-01-31 22:45:33 +00:00
|
|
|
|
2019-12-10 03:57:55 +00:00
|
|
|
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
|
|
|
|
battery = "0.7.5"
|
2019-12-14 13:27:14 +00:00
|
|
|
futures-util = "0.3.1"
|
2019-12-10 03:57:55 +00:00
|
|
|
|
2020-02-04 06:51:14 +00:00
|
|
|
[dependencies.heim]
|
|
|
|
version = "0.0.9"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
features = ["host", "cpu", "memory", "disk", "net", "sensors", "runtime-polyfill"]
|
|
|
|
|
2019-12-10 03:57:55 +00:00
|
|
|
[build-dependencies]
|
2020-01-29 02:17:02 +00:00
|
|
|
nu-build = { version = "0.9.0", path = "../nu-build" }
|