mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-31 00:00:07 +02:00
v0.1.x: ci: test tokio-process (#2101)
This commit is contained in:
@@ -9,6 +9,7 @@ members = [
|
|||||||
"tokio-fs",
|
"tokio-fs",
|
||||||
"tokio-futures",
|
"tokio-futures",
|
||||||
"tokio-io",
|
"tokio-io",
|
||||||
|
"tokio-process",
|
||||||
"tokio-reactor",
|
"tokio-reactor",
|
||||||
"tokio-signal",
|
"tokio-signal",
|
||||||
"tokio-sync",
|
"tokio-sync",
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ jobs:
|
|||||||
cross: true
|
cross: true
|
||||||
crates:
|
crates:
|
||||||
- tokio-fs
|
- tokio-fs
|
||||||
|
- tokio-process
|
||||||
- tokio-reactor
|
- tokio-reactor
|
||||||
- tokio-signal
|
- tokio-signal
|
||||||
- tokio-tcp
|
- tokio-tcp
|
||||||
|
|||||||
@@ -35,10 +35,10 @@ use self::winapi::um::threadpoollegacyapiset::*;
|
|||||||
use self::winapi::um::winbase::*;
|
use self::winapi::um::winbase::*;
|
||||||
use self::winapi::um::winnt::*;
|
use self::winapi::um::winnt::*;
|
||||||
use super::SpawnedChild;
|
use super::SpawnedChild;
|
||||||
|
use crate::kill::Kill;
|
||||||
use futures::future::Fuse;
|
use futures::future::Fuse;
|
||||||
use futures::sync::oneshot;
|
use futures::sync::oneshot;
|
||||||
use futures::{Async, Future, Poll};
|
use futures::{Async, Future, Poll};
|
||||||
use kill::Kill;
|
|
||||||
use tokio_reactor::{Handle, PollEvented};
|
use tokio_reactor::{Handle, PollEvented};
|
||||||
|
|
||||||
#[must_use = "futures do nothing unless polled"]
|
#[must_use = "futures do nothing unless polled"]
|
||||||
|
|||||||
Reference in New Issue
Block a user