imag/lib/domain/libimaghabit/src/lib.rs

60 lines
1.6 KiB
Rust
Raw Normal View History

2017-09-01 18:41:09 +00:00
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
2017-09-01 18:41:09 +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)]
2018-04-13 22:41:31 +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-09-01 18:41:09 +00:00
extern crate chrono;
extern crate toml;
extern crate toml_query;
2017-10-22 10:31:48 +00:00
extern crate kairos;
2017-09-01 18:41:09 +00:00
#[macro_use] extern crate log;
#[macro_use] extern crate failure;
2017-09-01 18:41:09 +00:00
#[macro_use] extern crate libimagstore;
2017-12-22 10:02:55 +00:00
extern crate libimagerror;
2017-09-01 18:41:09 +00:00
extern crate libimagentryedit;
extern crate libimagentrylink;
#[macro_use] extern crate libimagentryutil;
extern crate libimagutil;
2017-09-01 18:41:09 +00:00
module_entry_path_mod!("habit");
pub mod habit;
pub mod instance;
pub mod iter;
pub mod store;
2017-12-03 20:15:02 +00:00
pub mod util;
2017-09-01 18:41:09 +00:00