squire 0.0.1-alpha.1

Safe and idiomatic SQLite bindings
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(feature = "nightly", feature(inherent_associated_types))]
#![cfg_attr(feature = "nightly", feature(step_trait))]

mod connection;
mod database;
mod error;
pub mod ffi;
pub mod types;

pub use error::{
    AbortError, AuthorizationError, BusyError, CantOpenError, ConstraintError, CorruptError, Error,
    ErrorCategory, ErrorCode, GeneralError, IoError, LockedError, ReadOnlyError, Result,
};