mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Fix module visibility
This commit is contained in:
parent
38e92159fb
commit
4703358866
@ -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};
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user