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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! Ciruela Client Library
//! ======================
//!
//! [Docs](https://docs.rs/ciruela/) |
//! [Server Docs](https://ciruela.readthedocs.io/) |
//! [Examples](https://github.com/tailhook/ciruela/tree/master/examples) |
//! [Github](https://github.com/tailhook/ciruela/) |
//! [Crate](https://crates.io/crates/ciruela)
//!
#![allow(dead_code)]  // temporarily
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
extern crate abstract_ns;
extern crate base64;
extern crate blake2;
extern crate crypto;
extern crate digest_writer;
extern crate dir_signature;
extern crate hex;
extern crate humantime;
extern crate futures;
extern crate futures_cpupool;
extern crate tk_http;
extern crate rand;
extern crate serde;
extern crate serde_bytes;
extern crate serde_cbor;
extern crate ssh_keys;
extern crate tk_easyloop;
extern crate tk_bufstream;
extern crate tokio_core;
extern crate tokio_io;
extern crate valuable_futures;
extern crate void;

#[macro_use] extern crate log;
#[macro_use] extern crate mopa;
#[macro_use] extern crate matches;
#[macro_use] extern crate quick_error;
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate failure;

#[cfg(test)] #[macro_use] extern crate pretty_assertions;

mod failure_tracker;
mod id;
mod machine_id;
mod virtual_path;
mod proto;
mod database;
mod time_util;
mod serialize;
mod hexlify;
mod block_id;
pub mod blocks;
pub mod index;
pub mod cluster;
pub mod signature;

pub use virtual_path::VPath;