aboutsummaryrefslogtreecommitdiff
path: root/src/util/mod.rs
blob: 2b8dcfda1e3d4d5f1681491322c078ed3693ef17 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Internal utilities
pub(crate) mod param_cache;
mod small_cstr;
pub(crate) use param_cache::ParamIndexCache;
pub(crate) use small_cstr::SmallCString;

// Doesn't use any modern features or vtab stuff, but is only used by them.
#[cfg(any(feature = "modern_sqlite", feature = "vtab"))]
mod sqlite_string;
#[cfg(any(feature = "modern_sqlite", feature = "vtab"))]
pub(crate) use sqlite_string::SqliteMallocString;