phab-lib 0.3.1

CLI utility client for phabricator (https://www.phacility.com/phabricator)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct CertIdentityConfig {
  pub pkcs12_path: String,
  pub pkcs12_password: String,
}

#[derive(Debug, Deserialize)]
pub struct PhabricatorClientConfig {
  pub host: String,
  pub api_token: String,
  pub cert_identity_config: Option<CertIdentityConfig>,
}