diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-12-30 00:09:53 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-12-30 00:09:53 +0100 |
commit | f6033128292bbd5838a6585a1214bc6c9275de38 (patch) | |
tree | 56e57f8258d91bce732a4b0b6e822e80cb662664 | |
parent | e7f487094a9a9202b20bcba471b79fb522d4c44a (diff) | |
download | rocket-blog-f6033128292bbd5838a6585a1214bc6c9275de38.tar.gz rocket-blog-f6033128292bbd5838a6585a1214bc6c9275de38.tar.bz2 rocket-blog-f6033128292bbd5838a6585a1214bc6c9275de38.zip |
Order and cosmetics on extern crate declarations.
-rw-r--r-- | src/lib.rs | 13 | ||||
-rw-r--r-- | src/main.rs | 9 |
2 files changed, 10 insertions, 12 deletions
@@ -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; diff --git a/src/main.rs b/src/main.rs index fe8bcab..40fa802 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,14 +1,15 @@ #![feature(plugin)] #![plugin(rocket_codegen)] -extern crate diesel; -extern crate rocket; #[macro_use] extern crate rocket_blog; -extern crate rocket_contrib; #[macro_use] extern crate bart_derive; #[macro_use] extern crate serde_derive; -use self::rocket_blog::models; +extern crate diesel; +extern crate rocket; +extern crate rocket_contrib; + +use rocket_blog::models; use rocket_contrib::Json; mod posts; |