From aedfdbfa50bc9bee17e0e5fa052499afe3e402b9 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 14 Oct 2020 13:31:40 +0200 Subject: openpgp, autocrypt: Port to base64 0.13. --- Cargo.lock | 12 +++++++++--- autocrypt/Cargo.toml | 2 +- openpgp/Cargo.toml | 2 +- 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 @@ -117,6 +117,12 @@ version = "0.12.3" 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" @@ -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 } -- cgit v1.2.3