aboutsummaryrefslogtreecommitdiff
path: root/src/util/mod.rs
blob: e81e3c00cd05323d9ecbf104a4c7da7406045835 (plain)
1
2
3
4
5
6
7
8
9
// 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.
mod sqlite_string;
pub(crate) use sqlite_string::SqliteMallocString;