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