summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock10
-rw-r--r--ipc/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml2
3 files changed, 2 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b6467aad..b42d7d57 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1530,7 +1530,6 @@ dependencies = [
"itertools 0.10.3",
"lalrpop-util",
"petgraph",
- "pico-args",
"regex",
"regex-syntax",
"string_cache",
@@ -1544,9 +1543,6 @@ name = "lalrpop-util"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6d265705249fe209280676d8f68887859fa42e1d34f342fc05bd47726a5e188"
-dependencies = [
- "regex",
-]
[[package]]
name = "lazy_static"
@@ -2073,12 +2069,6 @@ dependencies = [
]
[[package]]
-name = "pico-args"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468"
-
-[[package]]
name = "pikchr"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 72547d8a..71d7397b 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -44,7 +44,7 @@ winapi = { version = "0.3.8", default-features = false, features = ["winsock2"]
ctor = "0.1"
[build-dependencies]
-lalrpop = ">=0.17"
+lalrpop = { version = ">=0.17", default-features = false }
[dev-dependencies]
clap = "2.33"
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 31ab96d0..59e7ea04 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -82,7 +82,7 @@ getrandom = { version = "0.2", features = ["js"] }
rand07 = { package = "rand", version = "0.7", features = ["wasm-bindgen"] }
[build-dependencies]
-lalrpop = ">=0.17"
+lalrpop = { version = ">=0.17", default-features = false }
[dev-dependencies]
quickcheck = { version = "1", default-features = false }