summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: cfb8fbeea4542325dae71c5b5165d68dd0a52bf7 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#[macro_use]
mod macros;

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

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

#[cfg(test)]
pub mod testdata;
extern crate tempfile;
#[cfg(test)]
extern crate assert_fs;
#[cfg(test)]
extern crate predicates;
#[cfg(test)]
#[macro_use]
extern crate maplit;

extern crate atty;
extern crate backtrace;
extern crate chrono;
extern crate fs2;
extern crate itertools;
extern crate libc;
extern crate libical_sys as ical;
extern crate stderrlog;
extern crate uuid;
extern crate walkdir;
extern crate yansi;

#[macro_use]
extern crate serde_derive;
extern crate toml;

#[macro_use]
extern crate log;

#[macro_use]
extern crate indoc;

#[cfg(test)]
#[macro_use]
extern crate lazy_static;