goji

a rust interface for jira
install
Add the following to your Cargo.toml file
[]
= "0.2"
usage
Please browse the examples directory in this repo for some example applications.
Basic usage requires a jira host, a hyper::Client instance and a flavor of jira::Credentials for authorization. For user authenticated requests you'll typically want to use jira::Credentials::Basic with your jira username and password.
Current support api support is limited to search and issue transitioning.
extern crate env_logger;
extern crate goji;
extern crate hyper;
extern crate hyper_openssl;
use Client;
use HttpsConnector;
use OpensslClient;
use ;
use env;
Doug Tangren (softprops) 2016