v0.1.x: ci: test tokio-process (#2101)

This commit is contained in:
Ivan Petkov
2020-01-13 20:50:47 -08:00
committed by Carl Lerche
parent 8576df240d
commit 86de4baacc
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@ members = [
"tokio-fs",
"tokio-futures",
"tokio-io",
"tokio-process",
"tokio-reactor",
"tokio-signal",
"tokio-sync",
+1
View File
@@ -24,6 +24,7 @@ jobs:
cross: true
crates:
- tokio-fs
- tokio-process
- tokio-reactor
- tokio-signal
- tokio-tcp
+1 -1
View File
@@ -35,10 +35,10 @@ use self::winapi::um::threadpoollegacyapiset::*;
use self::winapi::um::winbase::*;
use self::winapi::um::winnt::*;
use super::SpawnedChild;
use crate::kill::Kill;
use futures::future::Fuse;
use futures::sync::oneshot;
use futures::{Async, Future, Poll};
use kill::Kill;
use tokio_reactor::{Handle, PollEvented};
#[must_use = "futures do nothing unless polled"]