about summary refs log tree commit diff
path: root/fun/paroxysm/src/models.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-08-01T23·26+0100
committertazjin <mail@tazj.in>2020-08-02T02·16+0000
commit194c498d53ed68a9c70d548008e60eb7bdcbd59a (patch)
tree212947662db08737d228996b5ed707a172d8a618 /fun/paroxysm/src/models.rs
parent660a02947f91fd88901ee32e708f0004b45313ef (diff)
refactor(paroxysm): Explicitly macro imports, no more 'extern crate' r/1542
Removes all but one occurence of `extern crate`, to conform with Rust
2018.

The last one is necessary because Diesel is a giant jungle of
complicated macros re-exported from private crates, and the current
version makes it hard to import those directly instead.

Change-Id: Id14165a456d5c3ce6f7a4e0222c611640113eb11
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1549
Tested-by: BuildkiteCI
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Diffstat (limited to '')
-rw-r--r--fun/paroxysm/src/models.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/fun/paroxysm/src/models.rs b/fun/paroxysm/src/models.rs
index 721efbbb2e..734a248e8f 100644
--- a/fun/paroxysm/src/models.rs
+++ b/fun/paroxysm/src/models.rs
@@ -1,5 +1,5 @@
-use crate::schema::{entries, keywords};
 use chrono::NaiveDateTime;
+use crate::schema::{entries, keywords};
 
 #[derive(Queryable)]
 pub struct Keyword {