forked from rusqlite/rusqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version and use
libc
from crates.io
- Loading branch information
Showing
5 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -13,3 +13,6 @@ load_extension = [] | |
|
||
[build-dependencies] | ||
pkg-config = "~0.3" | ||
|
||
[dependencies] | ||
libc = "~0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#![feature(libc)] | ||
#![allow(non_snake_case)] | ||
|
||
extern crate libc; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters