From c85bde31704b1710feb7aca4e52c8a73c6b1e9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Tue, 24 Jul 2018 22:56:42 +0200 Subject: [PATCH] tokio: expose tokio_fs::metadata (#479) --- src/fs.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/fs.rs b/src/fs.rs index fe3a913c6..f0ed9a530 100644 --- a/src/fs.rs +++ b/src/fs.rs @@ -7,8 +7,4 @@ //! the context of the Tokio runtime as they require Tokio specific features to //! function. -pub use tokio_fs::{ - file, - File, - OpenOptions, -}; +pub use tokio_fs::{file, metadata, File, OpenOptions};