summaryrefslogtreecommitdiff
path: root/dhall_core
diff options
context:
space:
mode:
authorNadrieril2019-04-13 12:08:14 +0200
committerNadrieril2019-04-13 12:08:14 +0200
commita4e8f799fb4665b210086c28647e0fa335384913 (patch)
tree479694d8a26b65f2eee6233450af592d4baf8bd4 /dhall_core
parent5e41c4d1de45e2c799a1471692a715da565387e0 (diff)
Clarify role of dhall_generated_parser crate
Diffstat (limited to 'dhall_core')
-rw-r--r--dhall_core/Cargo.toml2
-rw-r--r--dhall_core/src/parser.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/dhall_core/Cargo.toml b/dhall_core/Cargo.toml
index f4aaf10..f51318f 100644
--- a/dhall_core/Cargo.toml
+++ b/dhall_core/Cargo.toml
@@ -11,5 +11,5 @@ doctest = false
[dependencies]
itertools = "0.8.0"
pest = { git = "https://github.com/pest-parser/pest" }
-dhall_parser = { path = "../dhall_parser" }
+dhall_generated_parser = { path = "../dhall_generated_parser" }
iter_patterns = { path = "../iter_patterns" }
diff --git a/dhall_core/src/parser.rs b/dhall_core/src/parser.rs
index e83f8a4..2d47ad7 100644
--- a/dhall_core/src/parser.rs
+++ b/dhall_core/src/parser.rs
@@ -5,7 +5,7 @@ pub use pest::Span;
use std::collections::BTreeMap;
use std::path::PathBuf;
-use dhall_parser::{DhallParser, Rule};
+use dhall_generated_parser::{DhallParser, Rule};
use crate::*;