Files
cull-gmail/Cargo.toml
Jeremiah Russell 01da79cf8c 📦 build(dependencies): update Cargo.toml with new dependencies
- 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
2025-09-30 11:13:17 +01:00

43 lines
957 B
TOML

[package]
name = "cull-gmail"
description = "Cull emails from a gmail account using the gmail API"
version = "0.0.1"
authors = ["Jeremiah Russell <jrussell@jerus.ie>"]
edition = "2024"
rust-version = "1.87"
keywords = ["gmail", "gmail-api", "management"]
categories = ["command-line-utilities"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jerus-org/cull-gmail"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
"CHANGELOG.md",
"docs",
]
[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"
unnecessary_semicolon = "warn"
[lints.rust]
dead-code = "allow" # allow temporarily while developing initial code
[lib]
name = "cull_gmail"
path = "src/lib.rs"
[[bin]]
name = "cull-gmail"
path = "src/main.rs"