From 198e396eadad704e96c9f37e24effc89a904f570 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 31 Oct 2018 11:11:10 -0700 Subject: Support cargo check (#1128) - Based on code from @qti3e and @piscisaureus in #724 and #1125 respectively. - TODO The DENO_BUILD_PATH env var must be supplied and must be an absolute path, this restriction should be removed in future work. --- src/main.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 515f60f88..0defa6838 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,21 +23,21 @@ extern crate log; #[macro_use] extern crate futures; -mod deno_dir; -mod errors; -mod flags; +pub mod deno_dir; +pub mod errors; +pub mod flags; mod fs; mod http_util; -mod isolate; -mod libdeno; -mod msg; +pub mod isolate; +pub mod libdeno; +pub mod msg; pub mod ops; -mod permissions; -mod resources; -mod snapshot; +pub mod permissions; +pub mod resources; +pub mod snapshot; mod tokio_util; mod tokio_write; -mod version; +pub mod version; #[cfg(unix)] mod eager_unix; -- cgit v1.2.3