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
31
32
33
34
35
36
37
38
39
40
//!
//! rhq is an alternative of `ghq`
//!

#![warn(unused_extern_crates)]

extern crate chrono;
#[macro_use]
extern crate error_chain;
extern crate glob;
#[macro_use]
extern crate lazy_static;
extern crate regex;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate shellexpand;
extern crate toml;
extern crate url;
extern crate walkdir;

mod cache;
mod config;
mod errors;
mod printer;
mod repository;
mod remote;
mod scp;
mod workspace;

pub mod query;
pub mod util;
pub mod vcs;

pub use self::errors::{Error, ErrorKind, Result};
pub use self::query::Query;
pub use self::remote::Remote;
pub use self::repository::Repository;
pub use self::workspace::Workspace;
pub use self::vcs::Vcs;