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-04-16 20:04:17 +00:00
|
|
|
#![deny(
|
2017-08-26 16:06:20 +00:00
|
|
|
dead_code,
|
2016-04-16 20:04:17 +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-04-16 20:04:17 +00:00
|
|
|
unused_mut,
|
|
|
|
unused_qualifications,
|
|
|
|
while_true,
|
|
|
|
)]
|
|
|
|
|
2016-04-16 13:54:25 +00:00
|
|
|
extern crate itertools;
|
2016-02-03 14:09:40 +00:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
extern crate toml;
|
2017-08-26 15:53:08 +00:00
|
|
|
extern crate toml_query;
|
2016-02-23 10:50:42 +00:00
|
|
|
extern crate url;
|
2016-04-16 12:26:33 +00:00
|
|
|
extern crate crypto;
|
2017-05-04 13:57:27 +00:00
|
|
|
#[macro_use] extern crate is_match;
|
2017-08-31 19:37:52 +00:00
|
|
|
#[macro_use] extern crate error_chain;
|
2016-02-03 14:09:40 +00:00
|
|
|
|
2016-10-15 08:58:50 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate env_logger;
|
|
|
|
|
2016-04-09 13:49:36 +00:00
|
|
|
#[macro_use] extern crate libimagstore;
|
2017-09-03 13:01:38 +00:00
|
|
|
extern crate libimagerror;
|
2017-05-04 14:27:31 +00:00
|
|
|
extern crate libimagutil;
|
2016-04-09 13:49:36 +00:00
|
|
|
|
2016-08-30 09:40:32 +00:00
|
|
|
module_entry_path_mod!("links");
|
2016-02-03 14:09:40 +00:00
|
|
|
|
2016-02-03 14:47:14 +00:00
|
|
|
pub mod error;
|
|
|
|
pub mod external;
|
|
|
|
pub mod internal;
|
|
|
|
|