summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2023-05-16 14:23:50 +0200
committerNeal H. Walfield <neal@pep.foundation>2023-05-16 14:35:21 +0200
commit876c0c08973e37381f4478677eb5d2af5c16e897 (patch)
tree3f61b7cc4cd67c12710dd1d698baba48eb40f7f3
parent43532470f25d1df39f5ca704cd99af54b15f75a1 (diff)
openpgp: Fix base64 dependency.
- Don't allow the use of base64 0.21 or later.
-rw-r--r--openpgp/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 22737e39..d5de3fd7 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -27,7 +27,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.18"
buffered-reader = { path = "../buffered-reader", version = "1.0.0", default-features = false }
-base64 = ">=0.12"
+base64 = ">=0.12, <0.21"
bzip2 = { version = "0.4", optional = true }
dyn-clone = "1"
flate2 = { version = "1.0.1", optional = true }