2015-02-23 15:22:34 -05:00
|
|
|
[package]
|
|
|
|
name = "libsqlite3-sys"
|
2020-06-05 19:16:51 +02:00
|
|
|
version = "0.19.0"
|
2020-04-15 21:07:23 -07:00
|
|
|
authors = ["The rusqlite developers"]
|
2018-10-30 20:11:35 +01:00
|
|
|
edition = "2018"
|
2020-04-15 21:07:23 -07:00
|
|
|
repository = "https://github.com/rusqlite/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"]
|
2020-01-14 08:11:36 -08:00
|
|
|
bundled = ["cc", "bundled_bindings"]
|
|
|
|
bundled-windows = ["cc", "bundled_bindings"]
|
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_23 = ["pkg-config", "vcpkg"]
|
2017-09-11 19:45:22 +02:00
|
|
|
min_sqlite_version_3_7_7 = ["pkg-config", "vcpkg"]
|
2019-01-06 09:50:35 +01:00
|
|
|
min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
|
2020-01-14 08:11:36 -08:00
|
|
|
# Bundle only the bindings file. Note that this does nothing if
|
|
|
|
# `buildtime_bindgen` is enabled.
|
|
|
|
bundled_bindings = []
|
2017-09-20 21:28:19 +02:00
|
|
|
# sqlite3_unlock_notify >= 3.6.12
|
|
|
|
unlock_notify = []
|
2019-01-13 12:46:19 +01:00
|
|
|
# 3.13.0
|
2020-06-10 17:52:59 -04:00
|
|
|
preupdate_hook = ["buildtime_bindgen"]
|
2019-01-13 12:46:19 +01:00
|
|
|
# 3.13.0
|
2020-06-10 17:52:59 -04:00
|
|
|
session = ["preupdate_hook", "buildtime_bindgen"]
|
2020-04-02 09:12:36 -07:00
|
|
|
in_gecko = []
|
2020-04-16 02:38:40 -07:00
|
|
|
with-asan = []
|
2020-07-20 20:04:55 +02:00
|
|
|
wasm32-wasi-vfs = []
|
2016-06-15 16:34:13 +02:00
|
|
|
|
2015-02-23 15:22:34 -05:00
|
|
|
[build-dependencies]
|
2020-05-29 20:40:04 +02:00
|
|
|
bindgen = { version = "0.54", optional = true, default-features = false, features = ["runtime"] }
|
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 }
|