Skip to content

Commit

Permalink
Expose modules so cargo doc outputs more.
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 31, 2018
1 parent 7e80636 commit 4c366b0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4c366b0

Please sign in to comment.