Fix module visibility

This commit is contained in:
gwenn 2019-03-19 20:43:40 +01:00
parent 38e92159fb
commit 4703358866
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,3 @@
//! Query columns
use std::str; use std::str;
use crate::{Error, Result, Row, Rows, Statement}; use crate::{Error, Result, Row, Rows, Statement};

View File

@ -83,6 +83,7 @@ use crate::raw_statement::RawStatement;
use crate::types::ValueRef; use crate::types::ValueRef;
pub use crate::cache::CachedStatement; pub use crate::cache::CachedStatement;
pub use crate::column::Column;
pub use crate::error::Error; pub use crate::error::Error;
pub use crate::ffi::ErrorCode; pub use crate::ffi::ErrorCode;
#[cfg(feature = "hooks")] #[cfg(feature = "hooks")]
@ -104,7 +105,7 @@ pub mod backup;
pub mod blob; pub mod blob;
mod busy; mod busy;
mod cache; mod cache;
pub mod column; mod column;
pub mod config; pub mod config;
#[cfg(any(feature = "functions", feature = "vtab"))] #[cfg(any(feature = "functions", feature = "vtab"))]
mod context; mod context;