util/
lib.rs

1// Copyright (c) 2015 - 2016, Alberto Corona <ac@albertocorona.com>
2// All rights reserved. This file is part of yabs, distributed under the BSD
3// 3-Clause license. For full terms please see the LICENSE file.
4
5#![recursion_limit = "1024"]
6
7#[macro_use]
8extern crate serde_derive;
9extern crate toml;
10extern crate walkdir;
11extern crate ansi_term;
12extern crate regex;
13extern crate serde;
14#[macro_use]
15extern crate error_chain;
16extern crate serde_json;
17#[macro_use]
18extern crate log;
19
20pub mod build;
21pub mod error;
22pub mod ext;
23pub mod new;
24pub mod logger;
25mod desc;