imag/libimagdiary/src/lib.rs

40 lines
786 B
Rust
Raw Normal View History

2016-04-23 15:19:32 +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,
)]
2016-03-31 12:52:19 +00:00
extern crate chrono;
2016-03-26 17:25:17 +00:00
#[macro_use] extern crate log;
2016-03-31 12:52:19 +00:00
#[macro_use] extern crate lazy_static;
2016-03-26 17:25:17 +00:00
extern crate semver;
extern crate toml;
2016-03-31 12:52:19 +00:00
extern crate regex;
extern crate itertools;
2016-03-26 17:25:17 +00:00
#[macro_use] extern crate libimagstore;
2016-03-31 13:40:24 +00:00
#[macro_use] extern crate libimagutil;
2016-03-31 12:52:19 +00:00
#[macro_use] extern crate libimagerror;
2016-03-26 17:25:17 +00:00
extern crate libimagrt;
module_entry_path_mod!("diary", "0.2.0");
2016-03-26 17:25:17 +00:00
2016-04-22 15:27:44 +00:00
pub mod config;
2016-05-23 16:31:14 +00:00
pub mod error;
2016-04-22 13:49:06 +00:00
pub mod diaryid;
2016-04-22 14:20:29 +00:00
pub mod diary;
2016-04-22 13:49:06 +00:00
pub mod is_in_diary;
pub mod entry;
2016-05-23 16:31:14 +00:00
pub mod iter;
pub mod result;