diff options
| author | Daniel Campbell <campbelldj@hotmail.com> | 2016-05-06 12:20:38 +1200 |
|---|---|---|
| committer | Daniel Campbell <campbelldj@hotmail.com> | 2016-05-06 12:44:18 +1200 |
| commit | 4a2db3ec6cb4e4a2a115e279c5df7fb48b62c80a (patch) | |
| tree | 5ffdad3447fbfa064e9c2cda257e7972a5a3cbb0 /src/lib.rs | |
| parent | 47631e2a5cdb081ccbbbd643f336781ace09196c (diff) | |
Changed modules & visitor mods to public, set filemap::write_file public
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs index 942fdb06994..b825059ee20 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,7 +49,7 @@ pub use self::summary::Summary; mod utils; pub mod config; pub mod filemap; -mod visitor; +pub mod visitor; mod checkstyle; mod items; mod missed_spans; @@ -61,7 +61,7 @@ mod issues; mod rewrite; mod string; mod comment; -mod modules; +pub mod modules; pub mod rustfmt_diff; mod chains; mod macros; |
