lose "extern crate" everywhere (Rust 2018 edition)

This commit is contained in:
Scott Lamb
2018-12-28 21:53:29 -06:00
parent f5703b9968
commit b5387af3d4
38 changed files with 166 additions and 219 deletions

View File

@@ -33,9 +33,10 @@
//! This includes opening files for serving, rotating away old files, and saving new files.
use crate::db::CompositeId;
use failure::{Error, Fail};
use libc::{self, c_char};
use protobuf::{self, Message};
use failure::{Error, Fail, bail, format_err};
use libc::c_char;
use log::warn;
use protobuf::Message;
use crate::schema;
use std::ffi;
use std::fs;