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-21 18:51:23 +00:00
|
|
|
#![deny(
|
2017-08-26 16:06:20 +00:00
|
|
|
dead_code,
|
2016-03-21 18:51:23 +00:00
|
|
|
non_camel_case_types,
|
|
|
|
non_snake_case,
|
|
|
|
path_statements,
|
|
|
|
trivial_numeric_casts,
|
|
|
|
unstable_features,
|
|
|
|
unused_allocation,
|
|
|
|
unused_import_braces,
|
|
|
|
unused_imports,
|
2017-08-26 16:06:20 +00:00
|
|
|
unused_must_use,
|
2016-03-21 18:51:23 +00:00
|
|
|
unused_mut,
|
|
|
|
unused_qualifications,
|
|
|
|
while_true,
|
|
|
|
)]
|
|
|
|
|
2016-01-28 19:59:43 +00:00
|
|
|
#[macro_use] extern crate log;
|
2016-02-11 14:15:31 +00:00
|
|
|
#[macro_use] extern crate version;
|
2016-01-24 11:17:06 +00:00
|
|
|
extern crate glob;
|
2016-02-20 20:06:47 +00:00
|
|
|
#[macro_use] extern crate lazy_static;
|
2016-01-18 21:25:49 +00:00
|
|
|
extern crate regex;
|
2016-01-12 17:52:14 +00:00
|
|
|
extern crate toml;
|
2016-01-22 17:44:35 +00:00
|
|
|
#[cfg(test)] extern crate tempdir;
|
2016-01-19 18:00:35 +00:00
|
|
|
extern crate semver;
|
2016-04-16 15:03:30 +00:00
|
|
|
extern crate walkdir;
|
2017-05-04 13:57:27 +00:00
|
|
|
#[macro_use] extern crate is_match;
|
2017-06-21 07:58:47 +00:00
|
|
|
extern crate serde_json;
|
2017-06-17 17:38:52 +00:00
|
|
|
#[macro_use] extern crate serde_derive;
|
2017-08-31 19:37:52 +00:00
|
|
|
#[macro_use] extern crate error_chain;
|
2016-01-12 17:52:14 +00:00
|
|
|
|
2017-09-02 21:02:53 +00:00
|
|
|
extern crate libimagerror;
|
2017-05-04 14:27:31 +00:00
|
|
|
extern crate libimagutil;
|
2016-05-15 14:39:52 +00:00
|
|
|
|
2017-02-04 19:56:30 +00:00
|
|
|
#[macro_use] mod util;
|
|
|
|
|
2016-01-19 18:00:35 +00:00
|
|
|
pub mod storeid;
|
2016-01-12 17:52:14 +00:00
|
|
|
pub mod error;
|
2017-09-15 11:07:49 +00:00
|
|
|
pub mod iter;
|
2016-01-13 21:03:53 +00:00
|
|
|
pub mod store;
|
2016-03-05 10:37:06 +00:00
|
|
|
mod configuration;
|
2017-06-17 10:43:13 +00:00
|
|
|
pub mod file_abstraction;
|
2016-01-12 17:52:14 +00:00
|
|
|
|