sqlite3-sys 0.12.0

The package provides bindings to SQLite.
Documentation
//! Bindings to [SQlite][1].
//!
//! [1]: https://www.sqlite.org

#![allow(improper_ctypes, non_camel_case_types)]
#![no_std]

extern crate libc;

#[cfg(feature = "linkage")]
extern crate sqlite3_src;

mod constants;
mod functions;
mod types;

pub use constants::*;
pub use functions::*;
pub use types::*;