summaryrefslogtreecommitdiff
path: root/src/eager_unix.rs
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2019-01-13 22:30:38 -0800
committerBert Belder <bertbelder@gmail.com>2019-01-14 22:30:04 +0100
commit526fdac053f125b641b07b78b81ffa9962622e09 (patch)
treeec884949a6b43c109a4509de21f6f6a10d15ef38 /src/eager_unix.rs
parent7d08db2191526524bf9a7a45b97952c533a6aa74 (diff)
Update to rust 2018 edition
Diffstat (limited to 'src/eager_unix.rs')
-rw-r--r--src/eager_unix.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/eager_unix.rs b/src/eager_unix.rs
index 1c0f5bd33..1699c421c 100644
--- a/src/eager_unix.rs
+++ b/src/eager_unix.rs
@@ -1,8 +1,7 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-
-use resources::{EagerAccept, EagerRead, EagerWrite, Resource};
-use tokio_util;
-use tokio_write;
+use crate::resources::{EagerAccept, EagerRead, EagerWrite, Resource};
+use crate::tokio_util;
+use crate::tokio_write;
use futures::future::{self, Either};
use std;