Merge branch 'functions' of https://github.com/gwenn/rusqlite into gwenn-functions

Conflicts:
	Cargo.toml
	src/lib.rs
This commit is contained in:
John Gallagher
2015-12-11 11:31:25 -05:00
5 changed files with 357 additions and 0 deletions

View File

@@ -85,6 +85,7 @@ mod transaction;
#[cfg(feature = "load_extension")]mod load_extension_guard;
#[cfg(feature = "trace")]pub mod trace;
#[cfg(feature = "backup")]pub mod backup;
#[cfg(feature = "functions")] pub mod functions;
/// A typedef of the result returned by many methods.
pub type SqliteResult<T> = Result<T, SqliteError>;