From 01da79cf8c01197096c5aca7fd8d5d331c252c5c Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Tue, 30 Sep 2025 11:03:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20build(dependencies):=20update=20?= =?UTF-8?q?Cargo.toml=20with=20new=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add clap, clap-verbosity-flag, env_logger, and log dependencies for improved command-line interface and logging functionality 🔧 chore(Cargo.toml): simplify package description - update description to be more concise and clear --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 959ee69..d59b15c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "cull-gmail" -description = """Tool to assist in culling emails from a -gmail account using the gmail API""" +description = "Cull emails from a gmail account using the gmail API" version = "0.0.1" authors = ["Jeremiah Russell "] edition = "2024" @@ -22,6 +21,10 @@ include = [ ] [dependencies] +clap = { version = "4.5.48", features = ["derive"] } +clap-verbosity-flag = { version = "3.0.4", features = ["tracing"] } +env_logger = "0.11.8" +log = "0.4.28" [lints.clippy] uninlined-format-args = "warn"