2016-10-13 13:13:08 +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"]
|
|
|
|
|
2017-08-26 16:06:20 +00:00
|
|
|
#![deny(
|
|
|
|
dead_code,
|
|
|
|
non_camel_case_types,
|
|
|
|
non_snake_case,
|
|
|
|
path_statements,
|
|
|
|
trivial_numeric_casts,
|
|
|
|
unstable_features,
|
|
|
|
unused_allocation,
|
|
|
|
unused_import_braces,
|
|
|
|
unused_imports,
|
|
|
|
unused_must_use,
|
|
|
|
unused_mut,
|
|
|
|
unused_qualifications,
|
|
|
|
while_true,
|
|
|
|
)]
|
|
|
|
|
2017-02-23 12:21:53 +00:00
|
|
|
extern crate toml;
|
2017-08-26 15:53:08 +00:00
|
|
|
extern crate toml_query;
|
2017-08-31 19:37:52 +00:00
|
|
|
#[macro_use] extern crate error_chain;
|
2016-10-13 13:13:08 +00:00
|
|
|
|
2017-09-03 13:50:54 +00:00
|
|
|
extern crate libimagerror;
|
2017-08-26 17:41:55 +00:00
|
|
|
extern crate libimagstore;
|
2017-02-23 12:16:20 +00:00
|
|
|
extern crate libimagentrylink;
|
2017-02-23 12:22:46 +00:00
|
|
|
extern crate libimagnotes;
|
2016-10-13 13:13:08 +00:00
|
|
|
|
2017-02-23 12:23:17 +00:00
|
|
|
pub mod annotateable;
|
2017-02-23 13:11:32 +00:00
|
|
|
pub mod annotation_fetcher;
|
2016-10-13 13:13:08 +00:00
|
|
|
pub mod error;
|
|
|
|
|