From 617e8c2200546ddd3a4480d8c83cb8703f6595b3 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Fri, 13 Dec 2019 12:47:31 +0000 Subject: Derive Parser in dhall_syntax directly --- dhall_syntax/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'dhall_syntax/Cargo.toml') diff --git a/dhall_syntax/Cargo.toml b/dhall_syntax/Cargo.toml index 2724fa5..d732bff 100644 --- a/dhall_syntax/Cargo.toml +++ b/dhall_syntax/Cargo.toml @@ -16,6 +16,5 @@ either = "1.5.2" take_mut = "0.2.2" hex = "0.3.2" lazy_static = "1.4.0" -dhall_generated_parser = { path = "../dhall_generated_parser" } # pest_consume = { path = "../../pest_consume/pest_consume" } pest_consume = "1.0" -- cgit v1.2.3 From 4c3552e23f788f971dc5879c99e1e659d8ddae8f Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Fri, 13 Dec 2019 12:53:02 +0000 Subject: Merge dhall_generated_parser into dhall_syntax --- dhall_syntax/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dhall_syntax/Cargo.toml') diff --git a/dhall_syntax/Cargo.toml b/dhall_syntax/Cargo.toml index d732bff..7708954 100644 --- a/dhall_syntax/Cargo.toml +++ b/dhall_syntax/Cargo.toml @@ -4,10 +4,14 @@ version = "0.1.0" authors = ["NanoTech ", "Nadrieril "] license = "BSD-2-Clause" edition = "2018" +build = "build.rs" [lib] doctest = false +[build-dependencies] +abnf_to_pest = { version = "0.1.1", path = "../abnf_to_pest" } + [dependencies] itertools = "0.8.0" percent-encoding = "2.1.0" -- cgit v1.2.3 From 212ee21e15e4334baa8d1b2a70aa6cc53fbd40ee Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 17 Dec 2019 11:43:57 +0000 Subject: Move pest file generation to dhall/build.rs --- dhall_syntax/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'dhall_syntax/Cargo.toml') diff --git a/dhall_syntax/Cargo.toml b/dhall_syntax/Cargo.toml index 7708954..e4dd533 100644 --- a/dhall_syntax/Cargo.toml +++ b/dhall_syntax/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" authors = ["NanoTech ", "Nadrieril "] license = "BSD-2-Clause" edition = "2018" -build = "build.rs" [lib] doctest = false -- cgit v1.2.3 From 27b054b0465d106fb4b6ba4d6dec16288cbc4e1d Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 17 Dec 2019 11:45:18 +0000 Subject: Remove dhall_syntax crate --- dhall_syntax/Cargo.toml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 dhall_syntax/Cargo.toml (limited to 'dhall_syntax/Cargo.toml') diff --git a/dhall_syntax/Cargo.toml b/dhall_syntax/Cargo.toml deleted file mode 100644 index e4dd533..0000000 --- a/dhall_syntax/Cargo.toml +++ /dev/null @@ -1,23 +0,0 @@ -[package] -name = "dhall_syntax" -version = "0.1.0" -authors = ["NanoTech ", "Nadrieril "] -license = "BSD-2-Clause" -edition = "2018" - -[lib] -doctest = false - -[build-dependencies] -abnf_to_pest = { version = "0.1.1", path = "../abnf_to_pest" } - -[dependencies] -itertools = "0.8.0" -percent-encoding = "2.1.0" -pest = "2.1" -either = "1.5.2" -take_mut = "0.2.2" -hex = "0.3.2" -lazy_static = "1.4.0" -# pest_consume = { path = "../../pest_consume/pest_consume" } -pest_consume = "1.0" -- cgit v1.2.3