From 4dc21f325a8f3746e1d30648b4dc842aede870c8 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Fri, 12 Jun 2020 13:15:10 +0200 Subject: Relax dependency on base64. --- Cargo.lock | 2 +- autocrypt/Cargo.toml | 2 +- openpgp/Cargo.toml | 2 +- 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" -- cgit v1.2.3