diff options
author | Nadrieril | 2019-03-06 12:25:05 +0100 |
---|---|---|
committer | Nadrieril | 2019-03-06 12:35:31 +0100 |
commit | 2e02360dc12b55f3811ba58bb17c21514990134c (patch) | |
tree | 2c9fc1bd0db2dd801842aa72d7e1144bc631e53a /Cargo.lock | |
parent | 564a5f37b106c69d8ebe9aec2f665f5222b3dfda (diff) |
Split-off normalization into its own crate
Diffstat (limited to '')
-rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -136,6 +136,7 @@ version = "0.1.0" dependencies = [ "bytecount 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "dhall_core 0.1.0", + "dhall_normalize 0.1.0", "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "lalrpop-util 0.16.3 (registry+https://github.com/rust-lang/crates.io-index)", "term-painter 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -156,6 +157,19 @@ dependencies = [ ] [[package]] +name = "dhall_normalize" +version = "0.1.0" +dependencies = [ + "bytecount 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "dhall_core 0.1.0", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lalrpop-util 0.16.3 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 3.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pest 2.1.0 (git+https://github.com/pest-parser/pest)", + "term-painter 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "dhall_parser" version = "0.1.0" dependencies = [ |