diff options
author | Nadrieril | 2019-03-08 00:49:42 +0100 |
---|---|---|
committer | Nadrieril | 2019-03-08 00:49:42 +0100 |
commit | 465c3d2b97cfebcf47cbcef1dc847e592d31f434 (patch) | |
tree | 30c6f2894afc1367d3a2e97687c476b7cba99a32 /dhall_parser/src | |
parent | 16ce1082465a11bf76df5f59530cde02bddc4f21 (diff) |
Generate pest file manually in the hopes to reduce spurious recompilations
Diffstat (limited to 'dhall_parser/src')
-rw-r--r-- | dhall_parser/src/lib.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dhall_parser/src/lib.rs b/dhall_parser/src/lib.rs index 452b4cd..94b49b5 100644 --- a/dhall_parser/src/lib.rs +++ b/dhall_parser/src/lib.rs @@ -1,6 +1 @@ -#[allow(unused_imports)] -use pest_derive::*; - -#[derive(Parser)] -#[grammar = "dhall.pest"] -pub struct DhallParser; +include!(concat!(env!("OUT_DIR"), "/grammar.rs")); |