aboutsummaryrefslogtreecommitdiffstats
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, 5 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b05ec3a..ec821e6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,20 +1,17 @@
#![feature(plugin, custom_derive)]
#![plugin(rocket_codegen)]
-#[macro_use]
-extern crate diesel_codegen;
-pub mod models;
-pub mod schema;
+#[macro_use] extern crate diesel_codegen;
+#[macro_use] extern crate diesel;
+#[macro_use] extern crate serde_derive;
-#[macro_use]
-extern crate diesel;
extern crate dotenv;
extern crate r2d2_diesel;
extern crate r2d2;
extern crate rocket;
-#[macro_use]
-extern crate serde_derive;
+pub mod models;
+pub mod schema;
use diesel::pg::PgConnection;
use r2d2_diesel::ConnectionManager;