Read write helpers (#896)

Provides async versions of read / write helpers being stabilized in `std`.
This commit is contained in:
Linus Färnstrand
2019-02-20 14:38:49 -08:00
committed by Carl Lerche
parent beb639a030
commit 1cf5f73651
5 changed files with 188 additions and 7 deletions
+1
View File
@@ -10,3 +10,4 @@
pub use tokio_fs::{create_dir, create_dir_all, file, hard_link, metadata, os, read_dir, read_link};
pub use tokio_fs::{remove_dir, remove_file, rename, set_permissions, symlink_metadata, File};
pub use tokio_fs::OpenOptions;
pub use tokio_fs::{read, write, ReadFile, WriteFile};