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
//! A crate for the Monto protocol. This crate implements version 3.0.0-draft02 of the protocol,
//! which is specified [here](https://melt-umn.github.io/monto-v3-draft/draft02).

#![deny(missing_docs)]

#[macro_use]
extern crate clap;
extern crate dirs;
extern crate either;
#[macro_use]
extern crate error_chain;
extern crate futures;
extern crate hyper;
extern crate itertools;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate mime;
extern crate notify;
extern crate regex;
extern crate semver;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate tokio_core;
extern crate toml;
extern crate url;
extern crate void;

#[macro_use]
mod macros;

pub mod broker;
pub mod client;
pub mod common;
pub mod service;