2015-02-23 15:22:34 -05:00
|
|
|
[package]
|
|
|
|
name = "libsqlite3-sys"
|
2017-12-05 18:05:51 -05:00
|
|
|
version = "0.9.1"
|
2015-02-23 15:22:34 -05:00
|
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
2015-02-23 21:54:46 -05:00
|
|
|
repository = "https://github.com/jgallagher/rusqlite"
|
2015-02-23 15:22:34 -05:00
|
|
|
description = "Native bindings to the libsqlite3 library"
|
|
|
|
license = "MIT"
|
|
|
|
links = "sqlite3"
|
|
|
|
build = "build.rs"
|
2017-12-03 14:20:54 -07:00
|
|
|
keywords = ["sqlite", "sqlcipher", "ffi"]
|
|
|
|
categories = ["external-ffi-bindings"]
|
2015-02-23 15:22:34 -05:00
|
|
|
|
2016-06-15 16:34:13 +02:00
|
|
|
[features]
|
2017-03-03 14:57:40 -05:00
|
|
|
default = ["min_sqlite_version_3_6_8"]
|
2017-10-09 22:55:55 +03:00
|
|
|
bundled = ["cc"]
|
2017-05-27 22:35:46 -05:00
|
|
|
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
|
2017-10-24 10:54:48 +02:00
|
|
|
sqlcipher = []
|
2017-05-27 22:35:46 -05:00
|
|
|
min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_6_11 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_6_23 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_7_3 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_7_4 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
|
2016-06-15 16:34:13 +02:00
|
|
|
|
2015-02-23 15:22:34 -05:00
|
|
|
[build-dependencies]
|
2017-11-13 13:26:50 -07:00
|
|
|
bindgen = { version = "0.31", optional = true }
|
2017-03-03 14:57:40 -05:00
|
|
|
pkg-config = { version = "0.3", optional = true }
|
2017-10-09 22:55:55 +03:00
|
|
|
cc = { version = "1.0", optional = true }
|
2017-05-28 06:15:47 -05:00
|
|
|
|
|
|
|
[target.'cfg(target_env = "msvc")'.build-dependencies]
|
2017-05-27 22:35:46 -05:00
|
|
|
vcpkg = { version = "0.2", optional = true }
|