From 5edecfa96040e5cd2b3c2351a24a10aa593ef9af Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Mon, 12 May 2025 10:25:53 -0300 Subject: [PATCH] fix: update debug macros to use log crate and remove unused imports --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 8cff829..d1de43a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,8 @@ use std::path::PathBuf; use anyhow::{anyhow, Context, Error, Result}; -use clap::error::ErrorKind; use clap::*; use log::*; -use rusqlite::Connection; mod modes; extern crate directories; @@ -15,7 +13,6 @@ use prettytable::format; use prettytable::format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR; use prettytable::format::{Alignment, TableFormat}; -use std::io::BufWriter; use std::str::FromStr; #[macro_use]