37 releases

0.17.0 Apr 21, 2024
0.16.0 Jan 28, 2024
0.15.2 Jun 17, 2023
0.14.0 Jul 31, 2022
0.5.0 Jun 12, 2015

#293 in Database interfaces

Download history 5164/week @ 2024-01-24 6767/week @ 2024-01-31 7489/week @ 2024-02-07 6086/week @ 2024-02-14 6599/week @ 2024-02-21 6034/week @ 2024-02-28 6399/week @ 2024-03-06 6403/week @ 2024-03-13 8630/week @ 2024-03-20 8575/week @ 2024-03-27 5981/week @ 2024-04-03 6839/week @ 2024-04-10 7886/week @ 2024-04-17 8734/week @ 2024-04-24 8702/week @ 2024-05-01 5810/week @ 2024-05-08

32,007 downloads per month
Used in 305 crates (11 directly)

Apache-2.0 OR MIT

185KB
5.5K SLoC

sqlite3-sys Package Documentation Build

The package provides bindings to SQLite.

The following Cargo features are supported:

  • linkage creates a dependency on sqlite3-src, which links to a suitable SQLite library;
  • bundled compiles SQLite from the source code, ignoring any libraries that might already be installed; and
  • encryption enables bindings to the SQLite Encryption Extension, which is closed source and hence requires purchasing a license and installing SQLite manually.

Development

cargo install bindgen-cli
git clone https://github.com/stainless-steel/sqlite3-src.git --recursive
bindgen --use-core sqlite3-src/source/sqlite3.h \
  | sed -E "s/^pub const ([0-9A-Z_]+): u32/pub const \1: ::core::ffi::c_int/" \
  > src/base.rs

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Dependencies

~0–2.5MB
~49K SLoC