summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
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 /Cargo.lock
parenta831f22e56c0f77611a66a950a3c94478bd3ed3c (diff)
openpgp, autocrypt: Port to base64 0.13.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock12
1 files changed, 9 insertions, 3 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",