diff options
| author | Jokler <jokler.contact@gmail.com> | 2017-12-16 18:13:02 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2017-12-24 01:24:58 +0100 |
| commit | 4b5693d3c6781a5ca4ef32f43f3994a65020c933 (patch) | |
| tree | fcea35b595542661d1f6713d860d647832aabd47 /src/lib.rs | |
| parent | 5928afc3bf83661cd3b11130a31a2d97ef135a9e (diff) | |
| download | frippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.tar.gz frippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.zip | |
Add more info to factoids and save old versions
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -35,8 +35,10 @@ #[macro_use] extern crate diesel; #[cfg(feature = "mysql")] +extern crate diesel_infer_schema; +#[cfg(feature = "mysql")] #[macro_use] -extern crate diesel_codegen; +extern crate diesel_migrations; #[macro_use] extern crate log; @@ -48,12 +50,15 @@ extern crate frippy_derive; extern crate irc; extern crate futures; extern crate tokio_core; +extern crate regex; +extern crate chrono; +extern crate time; pub mod plugin; pub mod plugins; -use std::fmt; use std::collections::HashMap; +use std::fmt; use std::thread::spawn; use std::sync::Arc; |
