1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

//! library to `gerrit-rust` tool

#![feature(custom_derive)]
#![feature(plugin)]
#![feature(proc_macro)]

#[macro_use]
extern crate quick_error;

#[macro_use]
extern crate log;

extern crate curl;
extern crate git2;
extern crate regex;
extern crate url;
extern crate gron;

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;

pub mod call;
pub mod changes;
pub mod entities;
pub mod error;
pub mod gerrit;