2016-10-01 15:35:06 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
|
|
|
// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; version
|
|
|
|
// 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
//
|
|
|
|
|
2017-08-31 19:45:09 +00:00
|
|
|
#![recursion_limit="256"]
|
|
|
|
|
2016-03-25 15:23:51 +00:00
|
|
|
#![deny(
|
2016-04-17 18:48:22 +00:00
|
|
|
dead_code,
|
2016-03-25 15:23:51 +00:00
|
|
|
non_camel_case_types,
|
|
|
|
non_snake_case,
|
|
|
|
path_statements,
|
|
|
|
trivial_numeric_casts,
|
|
|
|
unstable_features,
|
|
|
|
unused_allocation,
|
|
|
|
unused_import_braces,
|
|
|
|
unused_imports,
|
2016-04-17 18:48:22 +00:00
|
|
|
unused_must_use,
|
2016-03-25 15:23:51 +00:00
|
|
|
unused_mut,
|
|
|
|
unused_qualifications,
|
|
|
|
while_true,
|
|
|
|
)]
|
|
|
|
|
2016-01-10 14:04:06 +00:00
|
|
|
#[macro_use] extern crate log;
|
2017-08-31 19:37:52 +00:00
|
|
|
#[macro_use] extern crate error_chain;
|
2017-02-04 10:11:50 +00:00
|
|
|
extern crate itertools;
|
2016-01-10 14:04:06 +00:00
|
|
|
#[cfg(unix)] extern crate xdg_basedir;
|
2016-05-24 14:42:32 +00:00
|
|
|
extern crate env_logger;
|
2016-05-15 15:37:56 +00:00
|
|
|
extern crate ansi_term;
|
2017-08-26 13:27:13 +00:00
|
|
|
extern crate handlebars;
|
2016-01-10 14:04:06 +00:00
|
|
|
|
|
|
|
extern crate clap;
|
2016-03-05 11:30:40 +00:00
|
|
|
extern crate toml;
|
2017-08-26 15:53:08 +00:00
|
|
|
extern crate toml_query;
|
2017-06-03 12:50:18 +00:00
|
|
|
#[macro_use] extern crate is_match;
|
2016-01-10 14:04:06 +00:00
|
|
|
|
|
|
|
extern crate libimagstore;
|
|
|
|
extern crate libimagutil;
|
2017-09-03 12:38:46 +00:00
|
|
|
extern crate libimagerror;
|
2016-01-10 14:04:06 +00:00
|
|
|
|
2016-03-24 10:50:37 +00:00
|
|
|
pub mod error;
|
2017-01-22 14:15:44 +00:00
|
|
|
pub mod configuration;
|
2017-01-21 11:37:11 +00:00
|
|
|
pub mod logger;
|
2016-01-23 15:07:56 +00:00
|
|
|
pub mod runtime;
|
2016-05-18 17:00:41 +00:00
|
|
|
pub mod setup;
|
2017-05-30 21:09:03 +00:00
|
|
|
pub mod spec;
|
2016-01-10 14:04:06 +00:00
|
|
|
|