summaryrefslogtreecommitdiffstats
path: root/openpgp
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 /openpgp
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 'openpgp')
-rw-r--r--openpgp/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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 }