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
#![recursion_limit = "1000"]

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

extern crate ansi_term;
extern crate clap;
extern crate genco;
#[cfg(feature = "notify")]
extern crate notify;
extern crate reproto_ast as ast;
extern crate reproto_backend as backend;
extern crate reproto_backend_doc as doc;
extern crate reproto_compile as compile;
extern crate reproto_core as core;
extern crate reproto_derive as derive;
extern crate reproto_env as env;
extern crate reproto_manifest as manifest;
extern crate reproto_parser as parser;
extern crate reproto_repository as repository;
extern crate reproto_semck as semck;
extern crate reproto_trans as trans;
extern crate toml;
extern crate url;

mod build_spec;
pub mod ops;
pub mod output;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");