[package]
edition = "2024"
name = "wtg-cli"
version = "0.3.1"
authors = ["Mike Perlov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A snarky but helpful CLI tool to identify git commits, issues, PRs and file changes, and tell you which release they shipped in"
readme = "README.md"
keywords = [
"git",
"github",
"cli",
"tool",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/mishamsk/wtg"
resolver = "2"
[lib]
name = "wtg_cli"
path = "src/lib.rs"
[[bin]]
name = "wtg"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "offline"
path = "tests/offline.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
"unicode",
"wrap_help",
]
[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]
version = "1.0"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.strum]
version = "0.27.2"
features = [
"derive",
"strum_macros",
]
[dependencies.tokio]
version = "1.42"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.url]
version = "2.5"
[dev-dependencies.insta]
version = "1.43"
features = ["yaml"]
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tempfile]
version = "3.23"
[dev-dependencies.zip]
version = "6.0"
[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"