summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2019-12-17 11:45:18 +0000
committerNadrieril2019-12-17 11:45:18 +0000
commit27b054b0465d106fb4b6ba4d6dec16288cbc4e1d (patch)
treebfbe91eec47ec8e9aeaf621798fa62bd77becfc4
parent212ee21e15e4334baa8d1b2a70aa6cc53fbd40ee (diff)
Remove dhall_syntax crate
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml12
-rw-r--r--dhall_syntax/Cargo.toml23
-rw-r--r--dhall_syntax/src/lib.rs1
-rw-r--r--serde_dhall/Cargo.toml1
5 files changed, 0 insertions, 53 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 555577a..b196894 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -102,21 +102,6 @@ dependencies = [
]
[[package]]
-name = "dhall_syntax"
-version = "0.1.0"
-dependencies = [
- "abnf_to_pest 0.1.1",
- "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "pest 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "pest_consume 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -373,7 +358,6 @@ version = "0.1.0"
dependencies = [
"dhall 0.1.0",
"dhall_proc_macros 0.1.0",
- "dhall_syntax 0.1.0",
"serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Cargo.toml b/Cargo.toml
index b603e21..fc1f68d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,19 +4,7 @@ cargo-features = ["profile-overrides"]
members = [
"abnf_to_pest",
"dhall",
- "dhall_syntax",
"dhall_proc_macros",
"improved_slice_patterns",
"serde_dhall"
]
-
-# # Parser is super slow when not optimized
-# [profile.dev.overrides.dhall_parser]
-# opt-level = 3
-# [profile.dev.overrides.dhall_syntax]
-# opt-level = 3
-# [profile.dev.overrides.dhall]
-# opt-level = 3
-# [profile.dev]
-# opt-level = 3
-
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 <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"]
-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"
diff --git a/dhall_syntax/src/lib.rs b/dhall_syntax/src/lib.rs
deleted file mode 100644
index 8b13789..0000000
--- a/dhall_syntax/src/lib.rs
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml
index c61ddcd..9d46822 100644
--- a/serde_dhall/Cargo.toml
+++ b/serde_dhall/Cargo.toml
@@ -8,5 +8,4 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
dhall = { path = "../dhall" }
-dhall_syntax = { path = "../dhall_syntax" }
dhall_proc_macros = { path = "../dhall_proc_macros" }