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
//! Ciruela client library
//!
//! This is curently emptied as of 0.3.0 and APIs will be correctly vetted
//! and added again maintaining backwards compatibility (or at least
//! semantic versioning).
#![allow(dead_code)]  // temporarily
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
extern crate base64;
extern crate blake2;
extern crate crypto;
extern crate digest_writer;
extern crate dir_signature;
extern crate hex;
extern crate failure;
extern crate futures;
extern crate futures_cpupool;
extern crate tk_http;
extern crate serde;
extern crate serde_cbor;
extern crate serde_bytes;
extern crate ssh_keys;
extern crate tk_easyloop;
extern crate tk_bufstream;
extern crate tokio_core;
extern crate tokio_io;
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_derive;

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 use virtual_path::VPath;