2017-09-23 15:23:40 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
2019-01-03 01:32:07 +00:00
|
|
|
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
|
2017-09-23 15:23:40 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
|
2018-09-27 06:13:58 +00:00
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
|
2017-09-23 15:23:40 +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,
|
|
|
|
)]
|
|
|
|
|
2018-04-25 10:54:00 +00:00
|
|
|
#![recursion_limit="128"]
|
|
|
|
|
2017-09-23 15:23:40 +00:00
|
|
|
#[macro_use] extern crate log;
|
2018-10-30 17:40:51 +00:00
|
|
|
#[macro_use] extern crate failure;
|
2017-09-23 15:23:40 +00:00
|
|
|
extern crate vobject;
|
|
|
|
extern crate toml;
|
|
|
|
extern crate toml_query;
|
2018-02-13 23:12:23 +00:00
|
|
|
extern crate uuid;
|
2018-04-25 10:54:00 +00:00
|
|
|
extern crate serde;
|
|
|
|
#[macro_use] extern crate serde_derive;
|
2017-09-23 15:23:40 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate libimagstore;
|
|
|
|
extern crate libimagerror;
|
2018-01-08 22:39:23 +00:00
|
|
|
#[macro_use] extern crate libimagentryutil;
|
2017-09-23 15:23:40 +00:00
|
|
|
|
|
|
|
module_entry_path_mod!("contact");
|
|
|
|
|
2017-09-23 15:51:35 +00:00
|
|
|
pub mod contact;
|
2017-10-02 18:55:42 +00:00
|
|
|
pub mod iter;
|
2017-09-23 15:51:35 +00:00
|
|
|
pub mod store;
|
2018-03-12 16:45:50 +00:00
|
|
|
pub mod deser;
|
2018-04-25 10:54:00 +00:00
|
|
|
mod util;
|
2018-03-12 16:45:50 +00:00
|
|
|
|