refactor: replace anyhow with color-eyre

This commit is contained in:
2025-10-18 14:12:48 +03:00
parent 66b440adf6
commit 81a4071c73
5 changed files with 5 additions and 5 deletions

View File

@@ -6,9 +6,9 @@ edition = "2024"
[dependencies]
aes = { workspace = true, optional = true }
anyhow.workspace = true
cipher-core.workspace = true
clap = { version = "4.5", features = ["derive"] }
color-eyre.workspace = true
des = { workspace = true, optional = true }
thiserror.workspace = true

View File

@@ -11,7 +11,8 @@ use crate::{
use cipher_core::BlockCipher;
use clap::Parser;
fn main() -> anyhow::Result<()> {
fn main() -> color_eyre::Result<()> {
color_eyre::install()?;
let Args {
operation,
algorithm,