summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2017-07-13 07:28:42 -0400
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2017-07-13 07:28:42 -0400
commitfe6d45474a2024fb362ee59f7a38f827283ac0c4 (patch)
treecc09092fac8bca86372939cabc61220b1e0e303c /src/lib.rs
parentba1ab61901e657903a34b0b0acecb81c12b5e0d0 (diff)
add: Persistent user id.
This will be used to limit users to one vote per quote.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6b448d9..fcceb48 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -13,6 +13,8 @@ extern crate persistent;
extern crate params;
extern crate chrono;
extern crate logger;
+extern crate rand;
+extern crate iron_sessionstorage;
pub mod server;
pub mod data;