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

@ -1,6 +1,6 @@
[package] [package]
name = "rusqlite" name = "rusqlite"
version = "0.0.12" version = "0.0.13"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"] authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
description = "Ergonomic wrapper for SQLite" description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite" repository = "https://github.com/jgallagher/rusqlite"
@ -21,4 +21,4 @@ bitflags = "~0.1"
[dependencies.libsqlite3-sys] [dependencies.libsqlite3-sys]
path = "libsqlite3-sys" path = "libsqlite3-sys"
version = "0.0.10" version = "0.0.11"

View File

@ -1,3 +1,7 @@
# Version 0.0.13 (2015-03-26)
* Updates to track rustc nightly.
# Version 0.0.12 (2015-03-24) # Version 0.0.12 (2015-03-24)
* Updates to track rustc stabilization. * Updates to track rustc stabilization.

View File

@ -1,4 +1,4 @@
extern crate "pkg-config" as pkg_config; extern crate pkg_config;
fn main() { fn main() {
pkg_config::find_library("sqlite3").unwrap(); pkg_config::find_library("sqlite3").unwrap();

View File

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