summaryrefslogtreecommitdiff
path: root/dhall_parser
diff options
context:
space:
mode:
Diffstat (limited to 'dhall_parser')
-rw-r--r--dhall_parser/build.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dhall_parser/build.rs b/dhall_parser/build.rs
index bc342c1..d30e31e 100644
--- a/dhall_parser/build.rs
+++ b/dhall_parser/build.rs
@@ -1,7 +1,7 @@
use std::collections::HashMap;
+use std::env;
use std::fs::File;
use std::io::{BufRead, BufReader, Read, Write};
-use std::env;
use std::path::Path;
use abnf_to_pest::{abnf_to_pest, PestRuleSettings};
@@ -70,7 +70,6 @@ fn main() -> std::io::Result<()> {
"final_expression = {{ SOI ~ complete_expression ~ EOI }}"
)?;
-
// Generate pest parser manually to avoid spurious recompilations
let derived = {
let pest_path = "dhall.pest";