Switch from failure to anyhow

This commit is contained in:
Jeremy Soller
2025-03-25 15:51:35 -06:00
parent 10c0f0e688
commit 3c35457b60
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
failure = "0.1.8"
anyhow = "1"
pkgar = "0.1.9"
pkgar-core = "0.1.0"
pkgar-keys = "0.1.0"
+3 -3
View File
@@ -1,9 +1,9 @@
use anyhow::format_err;
use cosmic::iced::{
self, executor, theme,
widget::{button, column, horizontal_space, progress_bar, radio, row, text, vertical_space},
window, Alignment, Application, Command, Element, Length, Settings, Size, Subscription, Theme,
};
use failure::format_err;
use pkgar::{ext::EntryExt, PackageHead};
use pkgar_core::PackageSrc;
use pkgar_keys::PublicKeyFile;
@@ -105,7 +105,7 @@ fn format_size(size: u64) -> String {
}
}
fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> Result<(), failure::Error> {
fn copy_file(src: &Path, dest: &Path, buf: &mut [u8]) -> anyhow::Result<()> {
if let Some(parent) = dest.parent() {
// Parent may be a symlink
if ! parent.is_symlink() {
@@ -318,7 +318,7 @@ fn install<F: FnMut(Message)>(disk_path: String, password_opt: Option<String>, m
let res = with_whole_disk(
&disk_path,
&disk_option,
|mount_path| -> Result<(), failure::Error> {
|mount_path: &Path| -> anyhow::Result<()> {
message!("Loading filesystem.toml");
let mut config: Config = {
let path = root_path.join("filesystem.toml");