summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: efe55ef8ebca63aeed986b10691cf7f17b2a2b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![allow(clippy::redundant_closure)] // disable "redundant closure" lint
#[macro_use] mod macros;

pub mod errors;
pub type KhResult<T> = Result<T,errors::KhError>;

pub mod actions;
pub mod backup;
pub mod calendars;
pub mod cli;
pub mod config;
pub mod cursorfile;
pub mod defaults;
pub mod edit;
pub mod icalwrap;
pub mod input;
pub mod khevent;
pub mod khline;
pub mod selectors;
pub mod seqfile;
pub mod utils;
#[cfg(test)] pub mod testutils;
#[cfg(test)] pub mod testdata;

#[cfg(test)] #[macro_use] extern crate maplit;
#[cfg(test)] #[macro_use] extern crate pretty_assertions;

use ical;

#[macro_use] extern crate serde_derive;
#[macro_use] extern crate log;
#[macro_use] extern crate indoc;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate clap;