[package]
edition = "2024"
rust-version = "1.85"
name = "gmail-auto-label"
version = "0.1.5"
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"README_ZH.md",
"LICENSE",
"rust-toolchain.toml",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatic Gmail labeling tool powered by gog and codex"
homepage = "https://github.com/lichtcui/gmail-auto-label"
documentation = "https://docs.rs/gmail-auto-label"
readme = "README.md"
keywords = [
"gmail",
"automation",
"cli",
"email",
"labeling",
]
categories = [
"command-line-utilities",
"email",
]
license = "MIT"
repository = "https://github.com/lichtcui/gmail-auto-label"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "gmail_auto_label"
path = "src/lib.rs"
[[bin]]
name = "gmail-auto-label"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1.1"
[dependencies.wait-timeout]
version = "0.2"