chore: run cargo fmt

This commit is contained in:
鲁树人 2024-09-05 23:04:17 +01:00
parent 6c5c82ee1c
commit 4b89ad9962
2 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
use crate::Cli;
use anyhow::Result;
use clap::Args;
use std::fs::File;
use std::io::{Read, Write};
use std::path::PathBuf;
use crate::Cli;
/// Decrypt a QMCv1 file
#[derive(Args)]

View File

@ -22,7 +22,7 @@ pub struct Cli {
/// Preferred buffer size when reading file, in bytes.
/// Default to 4MiB.
#[clap(long, short = 'B', default_value_t=4*1024*1024)]
buffer_size: usize
buffer_size: usize,
}
fn run_command(cli: &Cli) -> Result<i32> {