Use new hyphen-less extern crate name

This commit is contained in:
John Gallagher
2015-03-26 15:48:29 -04:00
parent 134f34362a
commit 2461654861
4 changed files with 9 additions and 5 deletions

View File

@@ -52,7 +52,7 @@
#![cfg_attr(test, feature(test))]
extern crate libc;
extern crate "libsqlite3-sys" as ffi;
extern crate libsqlite3_sys as ffi;
#[macro_use] extern crate bitflags;
use std::mem;
@@ -811,7 +811,7 @@ impl<'stmt> SqliteRow<'stmt> {
#[cfg(test)]
mod test {
extern crate "libsqlite3-sys" as ffi;
extern crate libsqlite3_sys as ffi;
use super::*;
fn checked_memory_handle() -> SqliteConnection {