From facfb2d20e607667ad5ff214df75d24176e10281 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Thu, 10 Oct 2024 04:11:20 +0200 Subject: [PATCH] fix(deps): update rustic_core to version 0.5.3 (#1314) This contains an immediate fix for a newly introduced bug in `rustic_core v0.5.2` that involved how the `TreeStreamerOnce` handled errors when a channel was full. Fixes v0.9.2 breaks prune operations #1313 Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d4a084a..3fcf0dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3863,9 +3863,9 @@ dependencies = [ [[package]] name = "rustic_core" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31a91fba0db4615610806ee810c26844cfde155ede5e0d32fc8008d0dd52d790" +checksum = "11529c7b9a74297cb6c36f89d3746eb6a1112b8d309d5b25b338a9fedef0ff02" dependencies = [ "aes256ctr_poly1305aes", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 97bcd45..63755b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ rustdoc-args = ["--document-private-items", "--generate-link-to-definition"] [dependencies] abscissa_core = { version = "0.7.0", default-features = false, features = ["application"] } rustic_backend = { version = "0.4.1", features = ["cli"] } -rustic_core = { version = "0.5.2", features = ["cli"] } +rustic_core = { version = "0.5.3", features = ["cli"] } # allocators jemallocator-global = { version = "0.3.2", optional = true }