summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2022-05-19 21:42:45 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2022-05-23 15:11:51 +0200
commite93e56fba87b3b0eccaecf328a2be98a9c680e76 (patch)
tree8b383904b5c0063ec9304dc719592a3fc3371805 /ipc
parent59fe4a74cc899e9178684c5d6de8c3e7c488d4b0 (diff)
ipc, openpgp: Reduce features of dependency lalrpop.
- lalpop v0.19 a default features we do not use, we should not build them, either. - lalrpop v0.17, which we allow for Debian's benefit, does not have any explicit features. In this case, stating "default-features = false" in Cargo.toml does not hurt.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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"