commit | cec98a76e07a747a5efb3fc773cd7a9c14630f7c | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Wed May 08 15:23:19 2019 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Wed May 08 15:23:24 2019 -0700 |
tree | 2b23f16b417d3e87c532f6f3958b8d8dfacba8fb | |
parent | 983cd147935b747bb2b59d03fea385de20935b66 [diff] [blame] |
Move formatted file writing to module We will want to use this from other Rust-generating modules.
diff --git a/codegen/src/main.rs b/codegen/src/main.rs index d29a28c..01c3ec0 100644 --- a/codegen/src/main.rs +++ b/codegen/src/main.rs
@@ -12,6 +12,7 @@ #![recursion_limit = "128"] #![allow(clippy::needless_pass_by_value)] +mod file; mod gen; mod json; mod parse;