summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-10-14 13:31:40 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-10-14 15:31:01 +0200
commitaedfdbfa50bc9bee17e0e5fa052499afe3e402b9 (patch)
treeff1bd1a906a75a5d7596d98af033e836c3a698e7
parenta831f22e56c0f77611a66a950a3c94478bd3ed3c (diff)
openpgp, autocrypt: Port to base64 0.13.
-rw-r--r--Cargo.lock12
-rw-r--r--autocrypt/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml2
3 files changed, 11 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 99d58c57..d4336afd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -118,6 +118,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
+name = "base64"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
+
+[[package]]
name = "bindgen"
version = "0.51.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1694,7 +1700,7 @@ version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19"
dependencies = [
- "base64",
+ "base64 0.12.3",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
@@ -1791,7 +1797,7 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
name = "sequoia-autocrypt"
version = "0.19.0"
dependencies = [
- "base64",
+ "base64 0.13.0",
"sequoia-openpgp",
]
@@ -1901,7 +1907,7 @@ version = "0.19.0"
dependencies = [
"anyhow",
"backtrace",
- "base64",
+ "base64 0.13.0",
"buffered-reader",
"bzip2",
"dyn-clone",
diff --git a/autocrypt/Cargo.toml b/autocrypt/Cargo.toml
index f8e74233..d43e19b9 100644
--- a/autocrypt/Cargo.toml
+++ b/autocrypt/Cargo.toml
@@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
sequoia-openpgp = { path = "../openpgp", version = "0.19", default-features = false }
-base64 = "0.12"
+base64 = "0.13"
[features]
default = ["sequoia-openpgp/default"]
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 5ddeba75..985402d3 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.18", default-features = false }
-base64 = "0.12"
+base64 = "0.13"
bzip2 = { version = "0.4", optional = true }
dyn-clone = "1"
flate2 = { version = "1.0.1", optional = true }