From 1faff84905bb0b618ed0f07efbac7f1bced663fb Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 17 Aug 2024 11:01:52 +0000 Subject: [PATCH] build: update rpgp from 0.13.1 to 0.13.2 This fixes the problem with old core (<1.136.0) not being able to decrypt messages produced with the new core when using Ed25519 keys. The issue is described in --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 026e2a49a..e67f5ce69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3080,7 +3080,7 @@ dependencies = [ "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core 0.51.1", ] [[package]] @@ -4428,9 +4428,9 @@ dependencies = [ [[package]] name = "pgp" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aeab6e08a63a51a29a65e461d0b6fd0f8d350914712ec43773ca22ed51d5501c" +checksum = "4a6c842436d5fa2b59eac1e9b3d142b50bfff99c1744c816b1f4c2ac55a20754" dependencies = [ "aes", "aes-gcm", diff --git a/Cargo.toml b/Cargo.toml index e4203cb8b..fc7725bc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ num-traits = { workspace = true } once_cell = { workspace = true } percent-encoding = "2.3" parking_lot = "0.12" -pgp = { version = "0.13", default-features = false } +pgp = { version = "0.13.2", default-features = false } qrcodegen = "1.7.0" quick-xml = "0.36" quoted_printable = "0.5"