[package]
name = "yandex-tracker-cli"
version = "1.2.0"
edition = "2024"
rust-version = "1.90"
description = "Token-efficient Yandex Tracker CLI for humans and AI agents"
authors = ["Ilya Lubenets <lubenets.ilya.igorevich@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ormeilu/yandex-tracker-cli"
homepage = "https://ormeilu.github.io/yandex-tracker-cli/"
documentation = "https://ormeilu.github.io/yandex-tracker-cli/"
keywords = ["yandex", "tracker", "cli", "llm", "agent"]
categories = ["command-line-utilities"]
exclude = ["/.github", "/docs/adr", "/docs/book", "/docs/*.md", "/skills"]
[lib]
name = "ytcli"
path = "src/lib.rs"
[[bin]]
name = "ytcli"
path = "src/main.rs"
[dependencies]
anstream = "1.0.0"
anstyle = "1.0.14"
anyhow = "1.0.104"
backon = "1.6.0"
clap = { version = "4.6.6", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.6.9"
clap_mangen = "0.3.3"
dialoguer = { version = "0.12.0", default-features = false, features = ["password", "fuzzy-select"] }
etcetera = "0.11.0"
figment = { version = "0.10.19", features = ["toml", "env"] }
indicatif = "0.18.6"
jiff = { version = "0.2.35", features = ["serde"] }
keyring = { version = "4.1.6", features = [
"apple-native-keyring-store",
"windows-native-keyring-store",
"zbus-secret-service-keyring-store",
] }
owo-colors = "4.4.0"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "charset", "http2", "rustls", "multipart", "stream"] }
rpassword = "7.5.4"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
tabled = { version = "0.21.0", default-features = false, features = ["std", "ansi"] }
termimad = "0.35.2"
base64 = "0.23.1"
thiserror = "2.0.20"
tokio = { version = "1.53.1", features = ["rt", "macros", "fs", "time"] }
toml_edit = "0.25.13"
toon-format = "0.5.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt"] }
[dev-dependencies]
assert_cmd = "2.2.2"
insta = { version = "1.48.0", features = ["json", "filters"] }
predicates = "3.1.4"
tempfile = "3.27.0"
tokio = { version = "1.53.1", features = ["rt", "macros"] }
trycmd = "1.2.1"
wiremock = "0.6.5"
[features]
default = []
live = []
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
missing_debug_implementations = "warn"
unreachable_pub = "warn"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "warn"
dbg_macro = "deny"
print_stdout = "deny"
print_stderr = "deny"
result_large_err = "allow"
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"