trusty-common 0.18.2

Shared utilities and provider-agnostic streaming chat (ChatProvider, OllamaProvider, OpenRouter, tool-use) for trusty-* projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! JIRA Cloud backend (REST API v3).
//!
//! Why: JIRA is the enterprise default; the v3 API uses ADF for prose.
//! What: Basic-auth (email + API token), JQL for queries, Versions for
//! milestones.
//! Test: shape tests in `backend`; live tests gated by env vars.

mod backend;
mod client;
mod types;

pub use types::JiraBackend;