diff --git a/Cargo.toml b/Cargo.toml index eee0ec4..80228ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.0.13" +version = "0.0.14" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" @@ -18,7 +18,8 @@ load_extension = ["libsqlite3-sys/load_extension"] [dependencies] time = "~0.1.0" bitflags = "~0.1" +libc = "~0.1" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.0.11" +version = "0.0.12" diff --git a/Changelog.md b/Changelog.md index 034f07f..7e87cde 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# Version 0.0.14 + +* Remove unneeded features (also involves switching to `libc` crate). + # Version 0.0.13 (2015-03-26) * Updates to track rustc nightly. diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 91a51d3..9ff22b7 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.0.11" +version = "0.0.12" authors = ["John Gallagher "] repository = "https://github.com/jgallagher/rusqlite" description = "Native bindings to the libsqlite3 library" @@ -13,3 +13,6 @@ load_extension = [] [build-dependencies] pkg-config = "~0.3" + +[dependencies] +libc = "~0.1" diff --git a/libsqlite3-sys/src/lib.rs b/libsqlite3-sys/src/lib.rs index a3411c5..321d228 100644 --- a/libsqlite3-sys/src/lib.rs +++ b/libsqlite3-sys/src/lib.rs @@ -1,4 +1,3 @@ -#![feature(libc)] #![allow(non_snake_case)] extern crate libc; diff --git a/src/lib.rs b/src/lib.rs index f8ecb5e..bc49d38 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,7 +48,7 @@ //! } //! } //! ``` -#![feature(unsafe_destructor, libc)] +#![feature(unsafe_destructor)] #![cfg_attr(test, feature(test))] extern crate libc;