summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-06-12 13:15:10 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-06-12 13:15:10 +0200
commit4dc21f325a8f3746e1d30648b4dc842aede870c8 (patch)
tree0eb348638fea78d4957162d285033069b34b328c
parent22682e280261fec03f247a744ec5b515c930744e (diff)
Relax dependency on base64.
-rw-r--r--Cargo.lock2
-rw-r--r--autocrypt/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d1b7a439..bbea5e80 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1637,7 +1637,7 @@ dependencies = [
name = "sequoia-autocrypt"
version = "0.16.0"
dependencies = [
- "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "base64 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-openpgp 0.16.0",
]
diff --git a/autocrypt/Cargo.toml b/autocrypt/Cargo.toml
index 5b176959..4ae07c4e 100644
--- a/autocrypt/Cargo.toml
+++ b/autocrypt/Cargo.toml
@@ -22,4 +22,4 @@ maintenance = { status = "actively-developed" }
[dependencies]
sequoia-openpgp = { path = "../openpgp", version = "0.16" }
-base64 = "0.11"
+base64 = ">= 0.11, < 0.13"
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 7a24a195..0ab39a1e 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -27,7 +27,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1"
buffered-reader = { path = "../buffered-reader", version = "0.16", default-features = false }
-base64 = "0.12"
+base64 = ">= 0.11, < 0.13"
bzip2 = { version = "0.3.2", optional = true }
flate2 = { version = "1.0.1", optional = true }
idna = "0.2"