summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2024-04-11 17:07:03 +0200
committerJustus Winter <justus@sequoia-pgp.org>2024-04-11 18:21:58 +0200
commit752f57325968be9a43b3cef3a0f09ab0885c5d34 (patch)
tree908d33db2ca53dfa917d6baac51b4ecbc9288a31
parent7ba8f57618473730383233fbd3c89ee84b84a3fa (diff)
Update base64.
-rw-r--r--Cargo.lock16
-rw-r--r--autocrypt/Cargo.toml2
-rw-r--r--net/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml2
4 files changed, 14 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d084e12a..ea7c0721 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -192,6 +192,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
+name = "base64"
+version = "0.22.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
+
+[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2286,7 +2292,7 @@ version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
- "base64",
+ "base64 0.21.7",
"bytes",
"encoding_rs",
"futures-core",
@@ -2445,7 +2451,7 @@ version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
- "base64",
+ "base64 0.21.7",
]
[[package]]
@@ -2531,7 +2537,7 @@ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
name = "sequoia-autocrypt"
version = "0.25.1"
dependencies = [
- "base64",
+ "base64 0.22.0",
"sequoia-openpgp",
]
@@ -2577,7 +2583,7 @@ name = "sequoia-net"
version = "0.28.0"
dependencies = [
"anyhow",
- "base64",
+ "base64 0.22.0",
"futures-util",
"hickory-client",
"hickory-resolver",
@@ -2603,7 +2609,7 @@ dependencies = [
"aes",
"aes-gcm",
"anyhow",
- "base64",
+ "base64 0.22.0",
"block-padding",
"blowfish",
"botan",
diff --git a/autocrypt/Cargo.toml b/autocrypt/Cargo.toml
index 106ad714..8fd9dd85 100644
--- a/autocrypt/Cargo.toml
+++ b/autocrypt/Cargo.toml
@@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
sequoia-openpgp = { path = "../openpgp", version = "1.13", default-features = false }
-base64 = "0.21"
+base64 = ">= 0.21, < 0.23"
[lib]
bench = false
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 9918e8b5..7f206df8 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -36,7 +36,7 @@ thiserror = "1.0.2"
url = "2.1"
z-base-32 = "0.1.2"
tokio = { version = "1.13.1", features = [ "macros" ] }
-base64 = "0.21"
+base64 = ">= 0.21, < 0.23"
hickory-client = "0.24"
hickory-resolver = { version = "0.24", features = ["dnssec-openssl"]}
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index fdf1ebff..9e0a8c94 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -29,7 +29,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.18"
buffered-reader = { path = "../buffered-reader", version = "1.3.0", default-features = false }
-base64 = "0.21"
+base64 = ">= 0.21, < 0.23"
bzip2 = { version = "0.4", optional = true }
dyn-clone = "1"
flate2 = { version = "1.0.1", optional = true }