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
<https://github.com/deltachat/deltachat-core-rust/issues/5881>
This commit is contained in:
link2xt
2024-08-17 11:01:52 +00:00
parent 62fde21d9a
commit 1faff84905
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View File

@@ -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",

View File

@@ -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"