jira_query-1.2.0 has been yanked.
jira_query
Access issues on a remote Jira instance.
Description
The jira_query
crate is a Rust library that can query a Jira instance using its REST API. It returns a strongly typed representation of the requested issues.
This library provides no functionality to create or modify issues. The access is read-only.
Usage
Basic anonymous query
Without logging in, search for a single ticket and check for its priority:
use tokio;
use JiraInstance;
async
Advanced query
Use an API key to log into Jira. Search for all CentOS Stream tickets that are of the Blocker priority. Check that there is more than one ticket:
use tokio;
use ;
async
See also
bugzilla_query
, a similar interface to Bugzilla