about summary refs log tree commit diff
path: root/fun/paroxysm/src/keyword.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/keyword.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 'fun/paroxysm/src/keyword.rs')
-rw-r--r--fun/paroxysm/src/keyword.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/fun/paroxysm/src/keyword.rs b/fun/paroxysm/src/keyword.rs
index 9c5ea47ea5..16d962ab05 100644
--- a/fun/paroxysm/src/keyword.rs
+++ b/fun/paroxysm/src/keyword.rs
@@ -2,6 +2,7 @@ use crate::models::{Entry, Keyword, NewEntry, NewKeyword};
 use diesel::pg::PgConnection;
 use diesel::prelude::*;
 use failure::Error;
+use failure::format_err;
 use std::borrow::Cow;
 
 /// Maximum number of times we'll follow a `see: ` pointer.