diff --git a/Cargo.toml b/Cargo.toml index ec1b992d2..c78fe8e14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ members = [ "tokio-fs", "tokio-futures", "tokio-io", + "tokio-process", "tokio-reactor", "tokio-signal", "tokio-sync", diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 770b96ddc..ccdfc4cc0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,6 +24,7 @@ jobs: cross: true crates: - tokio-fs + - tokio-process - tokio-reactor - tokio-signal - tokio-tcp diff --git a/tokio-process/src/windows.rs b/tokio-process/src/windows.rs index 0d43f29fa..d2ea08fff 100644 --- a/tokio-process/src/windows.rs +++ b/tokio-process/src/windows.rs @@ -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"]