summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNora <nora.widdecke@tu-bs.de>2018-12-29 14:02:01 +0100
committerNora <nora.widdecke@tu-bs.de>2018-12-29 14:02:01 +0100
commit36bb07d0930a8a15f7dc2689a6bdfb5128dab220 (patch)
tree0d0228fc329e4dbf91dd6139e1d8a1d194f4ce6b /src/lib.rs
parent6111a494262a6a3334ca2269cc837ae384ab31d0 (diff)
order lib.rs alphabetically
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d79e252..8cc12c4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,21 +1,21 @@
pub mod agenda;
+pub mod bucketable;
pub mod cal;
pub mod calutil;
+pub mod config;
pub mod defaults;
+pub mod edit;
+pub mod grep;
pub mod icalwrap;
pub mod index;
-pub mod prettyprint;
pub mod list;
+pub mod prettyprint;
pub mod select;
pub mod seq;
+pub mod show;
pub mod sort;
pub mod unroll;
pub mod utils;
-pub mod bucketable;
-pub mod grep;
-pub mod config;
-pub mod show;
-pub mod edit;
#[cfg(test)]
pub mod testdata;
@@ -23,9 +23,9 @@ pub mod testdata;
extern crate chrono;
extern crate itertools;
extern crate libc;
+extern crate libical_sys as ical;
extern crate stderrlog;
extern crate yansi;
-extern crate libical_sys as ical;
#[macro_use]
extern crate serde_derive;