diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-31 11:11:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 11:11:10 -0700 |
commit | 198e396eadad704e96c9f37e24effc89a904f570 (patch) | |
tree | d07bd792de9023196a95374ead0520e54995dbc2 /src/main.rs | |
parent | 21dac6646552dcacb68a0ad167723976f27b5c47 (diff) |
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.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 20 |
1 files changed, 10 insertions, 10 deletions
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; |