From 17fd0dd6d7ab9ef9529be0b0d70fcea683c08603 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 2 Mar 2019 17:12:41 +0100 Subject: Move part of parser into its own crate to limit recompilation times --- dhall_parser/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dhall_parser/Cargo.toml (limited to 'dhall_parser/Cargo.toml') diff --git a/dhall_parser/Cargo.toml b/dhall_parser/Cargo.toml new file mode 100644 index 0000000..9993dce --- /dev/null +++ b/dhall_parser/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "dhall_parser" +version = "0.1.0" +authors = ["Nadrieril "] +edition = "2018" +build = "build.rs" + +[build-dependencies] +abnf_to_pest = { path = "../abnf_to_pest" } + +[dependencies] +pest = { git = "https://github.com/pest-parser/pest" } +pest_derive = { version = "2.1", path = "../../pest/derive" } -- cgit v1.2.3