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

@@ -31,9 +31,10 @@
/// Upgrades a version 0 schema to a version 1 schema.
use crate::db;
use failure::Error;
use crate::recording;
use rusqlite::{self, types::ToSql};
use failure::Error;
use log::warn;
use rusqlite::types::ToSql;
use std::collections::HashMap;
pub fn run(_args: &super::Args, tx: &rusqlite::Transaction) -> Result<(), Error> {