[package]
name = "libdoltlite-sys"
version = "0.38.11"
authors = ["Chris Mitchell"]
edition = "2021"
repository = "https://github.com/chris7/rusqdoltlite"
description = "Native bindings to the DoltLite SQLite-compatible library"
license = "MIT AND Apache-2.0 AND Zlib"
links = "doltlite"
build = "build.rs"
keywords = ["sqlite", "doltlite", "ffi"]
categories = ["external-ffi-bindings"]
exclude = ["**/*.sh"]
[features]
default = ["min_sqlite_version_3_34_1"]
bundled = ["cc", "bundled_bindings"]
bundled-windows = ["cc", "bundled_bindings"]
remote = []
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
min_sqlite_version_3_34_1 = ["pkg-config", "vcpkg"]
bundled_bindings = []
loadable_extension = ["prettyplease", "quote", "syn"]
unlock_notify = []
column_metadata = []
preupdate_hook = ["buildtime_bindgen"]
session = ["preupdate_hook", "buildtime_bindgen"]
in_gecko = []
with-asan = []
wasm32-wasi-vfs = []
[build-dependencies]
bindgen = { version = "0.72", optional = true, default-features = false, features = [
"runtime",
] }
pkg-config = { version = "0.3.19", optional = true }
cc = { version = "1.2.27", optional = true }
vcpkg = { version = "0.2.15", optional = true }
prettyplease = { version = "0.2.20", optional = true }
quote = { version = "1.0.36", optional = true, default-features = false }
syn = { version = "2.0.89", optional = true, features = [
"full",
"extra-traits",
"visit-mut",
] }