summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2017-06-16 21:27:31 -0400
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2017-06-16 21:27:41 -0400
commitdc642430468a1942246642775040f9784ca3e8f2 (patch)
tree5f2475e1744b6f318f1a0715b9ec1568d7e1d193 /src/lib.rs
parent285075f369690295a0ffc83fdb5b68f3460b30d5 (diff)
Basic encryption and password validation.
This is a placeholder encryption scheme for authentication.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1fef49c..cbc8777 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,11 +1,10 @@
#[macro_use]
extern crate horrorshow;
-extern crate rust_crypto;
extern crate sqlite;
pub mod systemd;
pub mod render;
-mod auth;
+pub mod auth;
#[cfg(test)]
mod tests {