diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index cc762f1ae..01be538e1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,6 +8,8 @@ extern crate rand; extern crate tempfile; extern crate tokio; extern crate tokio_executor; +extern crate tokio_fs; +extern crate tokio_io; extern crate tokio_threadpool; extern crate url; #[macro_use] @@ -21,6 +23,7 @@ extern crate ring; mod deno_dir; mod errors; +mod files; mod flags; mod fs; pub mod handlers; |