Bump version and use libc from crates.io

This commit is contained in:
John Gallagher 2015-03-28 23:09:13 -04:00
parent c8fbe48f15
commit 4b085b9103
5 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rusqlite" name = "rusqlite"
version = "0.0.13" version = "0.0.14"
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"
@ -18,7 +18,8 @@ load_extension = ["libsqlite3-sys/load_extension"]
[dependencies] [dependencies]
time = "~0.1.0" time = "~0.1.0"
bitflags = "~0.1" bitflags = "~0.1"
libc = "~0.1"
[dependencies.libsqlite3-sys] [dependencies.libsqlite3-sys]
path = "libsqlite3-sys" path = "libsqlite3-sys"
version = "0.0.11" version = "0.0.12"

View File

@ -1,3 +1,7 @@
# Version 0.0.14
* Remove unneeded features (also involves switching to `libc` crate).
# Version 0.0.13 (2015-03-26) # Version 0.0.13 (2015-03-26)
* Updates to track rustc nightly. * Updates to track rustc nightly.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libsqlite3-sys" name = "libsqlite3-sys"
version = "0.0.11" version = "0.0.12"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"] authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
repository = "https://github.com/jgallagher/rusqlite" repository = "https://github.com/jgallagher/rusqlite"
description = "Native bindings to the libsqlite3 library" description = "Native bindings to the libsqlite3 library"
@ -13,3 +13,6 @@ load_extension = []
[build-dependencies] [build-dependencies]
pkg-config = "~0.3" pkg-config = "~0.3"
[dependencies]
libc = "~0.1"

View File

@ -1,4 +1,3 @@
#![feature(libc)]
#![allow(non_snake_case)] #![allow(non_snake_case)]
extern crate libc; extern crate libc;

View File

@ -48,7 +48,7 @@
//! } //! }
//! } //! }
//! ``` //! ```
#![feature(unsafe_destructor, libc)] #![feature(unsafe_destructor)]
#![cfg_attr(test, feature(test))] #![cfg_attr(test, feature(test))]
extern crate libc; extern crate libc;