diff options
author | Andy Hayden <andyhayden1@gmail.com> | 2019-01-13 22:30:38 -0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-01-14 22:30:04 +0100 |
commit | 526fdac053f125b641b07b78b81ffa9962622e09 (patch) | |
tree | ec884949a6b43c109a4509de21f6f6a10d15ef38 /src/eager_unix.rs | |
parent | 7d08db2191526524bf9a7a45b97952c533a6aa74 (diff) |
Update to rust 2018 edition
Diffstat (limited to 'src/eager_unix.rs')
-rw-r--r-- | src/eager_unix.rs | 7 |
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; |