2015-02-23 15:22:34 -05:00
|
|
|
[package]
|
|
|
|
name = "libsqlite3-sys"
|
2022-10-26 19:26:53 -07:00
|
|
|
version = "0.25.2"
|
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]
|
2022-08-21 11:20:04 +02:00
|
|
|
default = ["min_sqlite_version_3_14_0"]
|
2020-01-14 08:11:36 -08:00
|
|
|
bundled = ["cc", "bundled_bindings"]
|
|
|
|
bundled-windows = ["cc", "bundled_bindings"]
|
2021-06-02 15:07:56 -04:00
|
|
|
bundled-sqlcipher = ["bundled"]
|
|
|
|
bundled-sqlcipher-vendored-openssl = ["bundled-sqlcipher", "openssl-sys/vendored"]
|
2017-05-27 22:35:46 -05:00
|
|
|
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
|
2017-10-24 10:54:48 +02:00
|
|
|
sqlcipher = []
|
2022-08-21 11:20:04 +02:00
|
|
|
min_sqlite_version_3_14_0 = ["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 = []
|
2022-04-02 11:42:28 -07:00
|
|
|
|
2020-08-18 01:33:50 +03:00
|
|
|
# lowest version shipped with Windows 10.0.10586 was 3.8.8.3
|
2022-04-02 11:42:28 -07:00
|
|
|
#
|
|
|
|
# Note that because `winsqlite3.dll` exports SQLite functions using a atypical
|
|
|
|
# ABI on 32-bit systems, this is currently unsupported on these. This may change
|
|
|
|
# in the future.
|
2022-08-22 18:38:59 +02:00
|
|
|
winsqlite3 = []
|
2016-06-15 16:34:13 +02:00
|
|
|
|
2021-06-02 15:07:56 -04:00
|
|
|
[dependencies]
|
2021-10-06 00:09:57 -05:00
|
|
|
openssl-sys = { version = "0.9", optional = true }
|
2021-06-02 15:07:56 -04:00
|
|
|
|
2015-02-23 15:22:34 -05:00
|
|
|
[build-dependencies]
|
2022-11-19 12:37:49 +01:00
|
|
|
bindgen = { version = "0.62", optional = true, default-features = false, features = ["runtime"] }
|
2021-05-16 23:17:20 +01:00
|
|
|
pkg-config = { version = "0.3.19", optional = true }
|
2017-10-09 22:55:55 +03:00
|
|
|
cc = { version = "1.0", optional = true }
|
2017-05-27 22:35:46 -05:00
|
|
|
vcpkg = { version = "0.2", optional = true }
|