jiragen 0.9.1

A Rust library for sending requests to JIRA. It includes functionality for sending bulk issue creation from a .csv file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

/// JiraGen configuration that is used for sending requests to JIRA. The username and password fields are required because JiraGen uses Basic Authentication to send requests to JIRA.
#[derive(Debug, Deserialize, Serialize)]
pub struct Config {
  /// The URL of the JIRA server.
  pub jira_url: String,
  /// The user name to login to JIRA
  pub jira_user: String,
  /// The user password to login to JIRA
  pub jira_password: String,
}