liter 0.0.8

Experimental library for using SQLite with minimal SQL
Documentation
//! Traits and helpers to [`Bind`] to statements and [`Fetch`] from rows

mod bind;
mod fetch;

pub use bind::{
	Bind,
	Binder,
	ToSql2
};

pub use fetch::{
	Fetch,
	Fetcher,
	FromSql2
};

#[doc(hidden)]
#[macro_export]
macro_rules! impl_from_to_sql_2 {
	($t:ty) => {
		impl $crate::types::FromSql2 for $t {}
		impl $crate::types::ToSql2 for $t {}
	};
}
#[doc(inline)]
pub use impl_from_to_sql_2;