2015-02-24 04:22:34 +08:00
|
|
|
[package]
|
|
|
|
name = "libsqlite3-sys"
|
2018-07-14 13:53:01 +08:00
|
|
|
version = "0.9.3"
|
2015-02-24 04:22:34 +08:00
|
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
2015-02-24 10:54:46 +08:00
|
|
|
repository = "https://github.com/jgallagher/rusqlite"
|
2015-02-24 04:22:34 +08:00
|
|
|
description = "Native bindings to the libsqlite3 library"
|
|
|
|
license = "MIT"
|
|
|
|
links = "sqlite3"
|
|
|
|
build = "build.rs"
|
2017-12-04 05:20:54 +08:00
|
|
|
keywords = ["sqlite", "sqlcipher", "ffi"]
|
|
|
|
categories = ["external-ffi-bindings"]
|
2015-02-24 04:22:34 +08:00
|
|
|
|
2016-06-15 22:34:13 +08:00
|
|
|
[features]
|
2017-03-04 03:57:40 +08:00
|
|
|
default = ["min_sqlite_version_3_6_8"]
|
2017-10-10 03:55:55 +08:00
|
|
|
bundled = ["cc"]
|
2017-05-28 11:35:46 +08:00
|
|
|
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
|
2017-10-24 16:54:48 +08:00
|
|
|
sqlcipher = []
|
2017-05-28 11:35:46 +08:00
|
|
|
min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
|
|
|
|
min_sqlite_version_3_6_23 = ["pkg-config", "vcpkg"]
|
2017-09-12 01:45:22 +08:00
|
|
|
min_sqlite_version_3_7_7 = ["pkg-config", "vcpkg"]
|
2017-09-21 03:28:19 +08:00
|
|
|
# sqlite3_unlock_notify >= 3.6.12
|
|
|
|
unlock_notify = []
|
2016-06-15 22:34:13 +08:00
|
|
|
|
2015-02-24 04:22:34 +08:00
|
|
|
[build-dependencies]
|
2018-09-08 17:19:24 +08:00
|
|
|
bindgen = { version = "0.40", optional = true }
|
2017-03-04 03:57:40 +08:00
|
|
|
pkg-config = { version = "0.3", optional = true }
|
2017-10-10 03:55:55 +08:00
|
|
|
cc = { version = "1.0", optional = true }
|
2017-05-28 19:15:47 +08:00
|
|
|
|
|
|
|
[target.'cfg(target_env = "msvc")'.build-dependencies]
|
2017-05-28 11:35:46 +08:00
|
|
|
vcpkg = { version = "0.2", optional = true }
|