diff options
author | Nadrieril | 2019-04-12 23:06:29 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-12 23:08:24 +0200 |
commit | ca0939f4cdf373ca735f25926d0a02c698d7f1cf (patch) | |
tree | 9600d2fc715de6afce9ae5c55e817706cfdb0aac | |
parent | 57fb440349443b20a6b72ee04f93e0abc4d03e56 (diff) |
Remove some leftover dependencies
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | dhall/Cargo.toml | 1 | ||||
-rw-r--r-- | dhall_core/Cargo.toml | 1 |
3 files changed, 0 insertions, 10 deletions
@@ -71,7 +71,6 @@ dependencies = [ "dhall_core 0.1.0", "dhall_generator 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)", "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_cbor 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -87,7 +86,6 @@ dependencies = [ "iter_patterns 0.1.0", "itertools 0.8.0 (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]] @@ -169,11 +167,6 @@ dependencies = [ ] [[package]] -name = "lalrpop-util" -version = "0.16.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] name = "maplit" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -436,7 +429,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum half 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9353c2a89d550b58fa0061d8ed8d002a7d8cdf2494eb0e432859bd3a9e543836" "checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum lalrpop-util 0.16.3 (registry+https://github.com/rust-lang/crates.io-index)" = "33b27d8490dbe1f9704b0088d61e8d46edc10d5673a8829836c6ded26a9912c7" "checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" "checksum nom 4.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4836e9d6036552017e107edc598c97b2dee245161ff1b1ad4af215004774b354" diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index c22492f..905f074 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -12,7 +12,6 @@ nothreads = [] # disable threads for tarpaulin [dependencies] bytecount = "0.5.1" itertools = "0.8.0" -lalrpop-util = "0.16.3" term-painter = "0.2.3" serde = { version = "1.0", features = ["derive"] } serde_cbor = "0.9.0" diff --git a/dhall_core/Cargo.toml b/dhall_core/Cargo.toml index 5f84d35..f4aaf10 100644 --- a/dhall_core/Cargo.toml +++ b/dhall_core/Cargo.toml @@ -10,7 +10,6 @@ doctest = false [dependencies] itertools = "0.8.0" -term-painter = "0.2.3" pest = { git = "https://github.com/pest-parser/pest" } dhall_parser = { path = "../dhall_parser" } iter_patterns = { path = "../iter_patterns" } |