From a4e8f799fb4665b210086c28647e0fa335384913 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 13 Apr 2019 12:08:14 +0200 Subject: Clarify role of dhall_generated_parser crate --- dhall_core/Cargo.toml | 2 +- dhall_core/src/parser.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'dhall_core') 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::*; -- cgit v1.2.3