summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cbc8777..ad0f971 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,10 +1,23 @@
#[macro_use]
extern crate horrorshow;
extern crate sqlite;
+extern crate crypto;
+extern crate base64;
+#[macro_use]
+extern crate iron;
+#[macro_use]
+extern crate log;
+#[macro_use]
+extern crate router;
+extern crate env_logger;
+extern crate iron_sessionstorage;
+extern crate staticfile;
+extern crate regex;
pub mod systemd;
pub mod render;
pub mod auth;
+pub mod server;
#[cfg(test)]
mod tests {