Merge pull request #257 from jgallagher/add-sqlite-3-7-16-bindgen

Add bindgen bindings for SQLite 3.7.16 to libsqlite3-sys.
This commit is contained in:
John Gallagher 2017-04-06 13:57:37 -04:00 committed by GitHub
commit 87ab8aefc8
5 changed files with 2308 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rusqlite" name = "rusqlite"
version = "0.10.2" version = "0.10.3"
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"
@ -41,7 +41,7 @@ regex = "0.2"
[dependencies.libsqlite3-sys] [dependencies.libsqlite3-sys]
path = "libsqlite3-sys" path = "libsqlite3-sys"
version = "0.7" version = "0.8"
[[test]] [[test]]
name = "config_log" name = "config_log"

View File

@ -1,3 +1,7 @@
# Version 0.10.3 (2017-04-06)
* Update to libsqlite3-sys 0.8.0 to fix a backwards-compatibility snafu in 0.7.2.
# Version 0.10.2 (2017-04-05) # Version 0.10.2 (2017-04-05)
* Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys. * Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libsqlite3-sys" name = "libsqlite3-sys"
version = "0.7.2" version = "0.8.0"
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"
@ -19,6 +19,7 @@ min_sqlite_version_3_6_11 = ["pkg-config"]
min_sqlite_version_3_6_23 = ["pkg-config"] min_sqlite_version_3_6_23 = ["pkg-config"]
min_sqlite_version_3_7_3 = ["pkg-config"] min_sqlite_version_3_7_3 = ["pkg-config"]
min_sqlite_version_3_7_4 = ["pkg-config"] min_sqlite_version_3_7_4 = ["pkg-config"]
min_sqlite_version_3_7_16 = ["pkg-config"]
[build-dependencies] [build-dependencies]
bindgen = { version = "0.21", optional = true } bindgen = { version = "0.21", optional = true }

File diff suppressed because it is too large Load Diff

View File

@ -122,6 +122,9 @@ mod build {
#[cfg(feature = "min_sqlite_version_3_7_4")] #[cfg(feature = "min_sqlite_version_3_7_4")]
"bindgen-bindings/bindgen_3.7.4.rs", "bindgen-bindings/bindgen_3.7.4.rs",
#[cfg(feature = "min_sqlite_version_3_7_16")]
"bindgen-bindings/bindgen_3.7.16.rs",
]; ];
pub fn write_to_out_dir(_header: HeaderLocation) { pub fn write_to_out_dir(_header: HeaderLocation) {