squire 0.0.1-alpha.5

Safe and idiomatic SQLite bindings
Documentation
mod bind;
mod borrow;
mod column;
mod integration;
#[cfg(all(any(feature = "json", feature = "jsonb"), feature = "serde"))]
mod json;
mod row_id;
mod value;

pub use bind::{BindIndex, BindIndexes};
pub use borrow::Borrowed;
pub use column::ColumnIndex;
pub use row_id::RowId;
pub use value::Type;

#[cfg(all(feature = "json", feature = "serde"))]
pub use json::Json;
#[cfg(all(feature = "jsonb", feature = "serde"))]
pub use json::Jsonb;