Bump heim and necessary deps

This commit is contained in:
Jonathan Turner
2019-12-15 02:27:14 +13:00
parent 550bda477b
commit 31c703891a
6 changed files with 102 additions and 68 deletions

View File

@ -12,9 +12,10 @@ nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
heim = "0.0.8"
heim = "0.0.9"
futures-timer = "1.0.3"
pin-utils = "0.1.0-alpha.4"
futures-util = "0.3.1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }

View File

@ -1,6 +1,7 @@
use futures::executor::block_on;
use futures::stream::{StreamExt, TryStreamExt};
//use futures::stream::TryStreamExt;
use futures_util::{StreamExt, TryStreamExt};
use heim::process::{self as process, Process, ProcessResult};
use heim::units::{ratio, Ratio};
use std::usize;

View File

@ -10,9 +10,10 @@ edition = "2018"
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
heim = "0.0.8"
heim = "0.0.9"
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
battery = "0.7.5"
futures-util = "0.3.1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }

View File

@ -1,7 +1,8 @@
use std::ffi::OsStr;
use futures::executor::block_on;
use futures::stream::StreamExt;
//use futures::stream::StreamExt;
use futures_util::StreamExt;
use heim::units::{frequency, information, thermodynamic_temperature, time};
use heim::{disk, host, memory, net, sensors};
use nu_errors::ShellError;