Skip to content

Commit

Permalink
Bump version and use libc from crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
hydhknn committed Mar 29, 2015
1 parent c8fbe48 commit 4b085b9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusqlite"
version = "0.0.13"
version = "0.0.14"
authors = ["John Gallagher <[email protected]>"]
description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite"
Expand All @@ -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"
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion libsqlite3-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsqlite3-sys"
version = "0.0.11"
version = "0.0.12"
authors = ["John Gallagher <[email protected]>"]
repository = "https://github.com/jgallagher/rusqlite"
description = "Native bindings to the libsqlite3 library"
Expand All @@ -13,3 +13,6 @@ load_extension = []

[build-dependencies]
pkg-config = "~0.3"

[dependencies]
libc = "~0.1"
1 change: 0 additions & 1 deletion libsqlite3-sys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(libc)]
#![allow(non_snake_case)]

extern crate libc;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
//! }
//! }
//! ```
#![feature(unsafe_destructor, libc)]
#![feature(unsafe_destructor)]
#![cfg_attr(test, feature(test))]

extern crate libc;
Expand Down

0 comments on commit 4b085b9

Please sign in to comment.