Skip to content

Commit

Permalink
Stop glob importing from sqlite::connection::mod
Browse files Browse the repository at this point in the history
This is due to some apparent changes in Rust nightly that is causing the
`extern crate` definitions to conflict with each other. Unfortunately,
we still don't compile on nightly as a result of
rust-lang/rust#31487, but this is an easy win.
  • Loading branch information
sgrif committed Feb 14, 2016
1 parent 6df20de commit e94a3cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diesel/src/sqlite/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ use query_builder::*;
use query_source::*;
use result::*;
use result::Error::QueryBuilderError;
use self::raw::*;
use self::raw::RawConnection;
use self::statement_iterator::StatementIterator;
use self::stmt::*;
use self::stmt::Statement;
use sqlite::Sqlite;
use super::query_builder::SqliteQueryBuilder;
use types::HasSqlType;
Expand Down

0 comments on commit e94a3cb

Please sign in to comment.