From 86de4baaccbc21ec93d42d356d2bee0f2b80e2ea Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Mon, 13 Jan 2020 20:50:47 -0800 Subject: [PATCH] v0.1.x: ci: test `tokio-process` (#2101) --- Cargo.toml | 1 + azure-pipelines.yml | 1 + tokio-process/src/windows.rs | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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"]