mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Use new hyphen-less extern crate name
This commit is contained in:
parent
134f34362a
commit
2461654861
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rusqlite"
|
||||
version = "0.0.12"
|
||||
version = "0.0.13"
|
||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||
description = "Ergonomic wrapper for SQLite"
|
||||
repository = "https://github.com/jgallagher/rusqlite"
|
||||
@ -21,4 +21,4 @@ bitflags = "~0.1"
|
||||
|
||||
[dependencies.libsqlite3-sys]
|
||||
path = "libsqlite3-sys"
|
||||
version = "0.0.10"
|
||||
version = "0.0.11"
|
||||
|
@ -1,3 +1,7 @@
|
||||
# Version 0.0.13 (2015-03-26)
|
||||
|
||||
* Updates to track rustc nightly.
|
||||
|
||||
# Version 0.0.12 (2015-03-24)
|
||||
|
||||
* Updates to track rustc stabilization.
|
||||
|
2
build.rs
2
build.rs
@ -1,4 +1,4 @@
|
||||
extern crate "pkg-config" as pkg_config;
|
||||
extern crate pkg_config;
|
||||
|
||||
fn main() {
|
||||
pkg_config::find_library("sqlite3").unwrap();
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user