wtg-cli 0.3.0

A snarky but helpful CLI tool to identify git commits, issues, PRs and file changes, and tell you which release they shipped in
Documentation
[[bin]]
name = "wtg"
path = "src/main.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive", "env", "unicode", "wrap_help"]
version = "4.5"

[dependencies.crossterm]
version = "0.29.0"

[dependencies.dirs]
version = "6.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.git2]
version = "0.20.2"

[dependencies.http]
version = "1.4"

[dependencies.log]
version = "0.4"

[dependencies.octocrab]
version = "0.48.0"

[dependencies.percent-encoding]
version = "2.3"

[dependencies.regex]
version = "1.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.strum]
features = ["derive", "strum_macros"]
version = "0.27.2"

[dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1.42"

[dependencies.url]
version = "2.5"

[dev-dependencies.insta]
features = ["yaml"]
version = "1.43"

[dev-dependencies.rstest]
version = "0.26"

[dev-dependencies.tempfile]
version = "3.23"

[dev-dependencies.zip]
version = "6.0"

[lib]
name = "wtg_cli"
path = "src/lib.rs"

[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
redundant_pub_crate = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unreachable_pub = "warn"
unsafe_code = "warn"

[package]
authors = ["Mike Perlov"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A snarky but helpful CLI tool to identify git commits, issues, PRs and file changes, and tell you which release they shipped in"
edition = "2024"
keywords = ["git", "github", "cli", "tool", "automation"]
license = "MIT"
name = "wtg-cli"
readme = "README.md"
repository = "https://github.com/mishamsk/wtg"
resolver = "2"
version = "0.3.0"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "offline"
path = "tests/offline.rs"