sqll-sys 0.12.4+sqlite3.51.2

Efficient interface to SQLite that doesn't get in your way
Documentation
# sqll-sys

[<img alt="github" src="https://img.shields.io/badge/github-udoprog/sqll-8da0cb?style=for-the-badge&logo=github" height="20">](https://github.com/udoprog/sqll)
[<img alt="crates.io" src="https://img.shields.io/crates/v/sqll-sys.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](https://crates.io/crates/sqll-sys)
[<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-sqll--sys-66c2a5?style=for-the-badge&logoColor=white&logo=data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiNmNWY1ZjUiIGQ9Ik00ODguNiAyNTAuMkwzOTIgMjE0VjEwNS41YzAtMTUtOS4zLTI4LjQtMjMuNC0zMy43bC0xMDAtMzcuNWMtOC4xLTMuMS0xNy4xLTMuMS0yNS4zIDBsLTEwMCAzNy41Yy0xNC4xIDUuMy0yMy40IDE4LjctMjMuNCAzMy43VjIxNGwtOTYuNiAzNi4yQzkuMyAyNTUuNSAwIDI2OC45IDAgMjgzLjlWMzk0YzAgMTMuNiA3LjcgMjYuMSAxOS45IDMyLjJsMTAwIDUwYzEwLjEgNS4xIDIyLjEgNS4xIDMyLjIgMGwxMDMuOS01MiAxMDMuOSA1MmMxMC4xIDUuMSAyMi4xIDUuMSAzMi4yIDBsMTAwLTUwYzEyLjItNi4xIDE5LjktMTguNiAxOS45LTMyLjJWMjgzLjljMC0xNS05LjMtMjguNC0yMy40LTMzLjd6TTM1OCAyMTQuOGwtODUgMzEuOXYtNjguMmw4NS0zN3Y3My4zek0xNTQgMTA0LjFsMTAyLTM4LjIgMTAyIDM4LjJ2LjZsLTEwMiA0MS40LTEwMi00MS40di0uNnptODQgMjkxLjFsLTg1IDQyLjV2LTc5LjFsODUtMzguOHY3NS40em0wLTExMmwtMTAyIDQxLjQtMTAyLTQxLjR2LS42bDEwMi0zOC4yIDEwMiAzOC4ydi42em0yNDAgMTEybC04NSA0Mi41di03OS4xbDg1LTM4Ljh2NzUuNHptMC0xMTJsLTEwMiA0MS40LTEwMi00MS40di0uNmwxMDItMzguMiAxMDIgMzguMnYuNnoiPjwvcGF0aD48L3N2Zz4K" height="20">](https://docs.rs/sqll-sys)
[<img alt="build status" src="https://img.shields.io/github/actions/workflow/status/udoprog/sqll/ci.yml?branch=main&style=for-the-badge" height="20">](https://github.com/udoprog/sqll/actions?query=branch%3Amain)

Bindings to [sqlite] for [sqll].

Note that the metadata field of this crate specified which version of sqlite
is provided *if* the `bundled` feature is enabled, like `+sqlite-3.51.2`.

<br>

## Features

* `bundled` - Use the bundled sqlite3 source code. If this feature is not
  enabled see the building with system dependencies section below.
* `threadsafe` - Build sqlite3 with threadsafe support. If this is not set
  then the `bundled` feature has to be set since we otherwise cannot control
  how sqlite is built.
* `strict` - Build sqlite3 with strict compiler flags enabled. This is only
  used when the `bundled` feature is enabled.

<br>

## Building

When linking to a system sqlite library there is a minimum required version.
This is specified in the [`sqlite3-version`] file and is checked at build
time.

If the `bundled` feature is not set, this will attempt to find the native
sqlite3 bindings using the following methods:
* Calling `vcpkg`, this can be disabled by setting the `NO_VCPKG` or
  `SQLITE3_NO_VCPKG` environment variables.
* Finding the library through `pkg-config`, this can be disabled by setting
  or by setting the `SQLITE3_NO_PKG_CONFIG` environment variables.

<br>

## Building under WASM

If the target is is `wasm`, you can set the `SDK_PATH_ENV` to specify an SDK
path to a particular compiler to use when building the wasm bindings. This
is only supported when the `bundled` feature is enabled.

The following environment variables can be set to modify this behavior:
* `SQLL_TARGET` or `TARGET` to specify the build target. You probably want
  to set this to something like `wasm32-wasi-unknown`.
* `SQLL_CLANG_PATH` or `CLANG_PATH` to specify a custom path to a clang
  compiler installation.

[`sqlite3-version`]: https://github.com/udoprog/sqll/blob/main/sqll-sys/sqlite3-version
[sqlite]: https://www.sqlite.org
[sqll]: https://docs.rs/sqll