Skip to main content

dbrest_sqlite/
lib.rs

1//! dbrest-sqlite — SQLite backend for the dbrest REST API
2//!
3//! This crate implements the [`DatabaseBackend`](dbrest_core::backend::DatabaseBackend)
4//! and [`SqlDialect`](dbrest_core::backend::SqlDialect) traits for SQLite
5//! via `sqlx::SqlitePool`.
6
7pub mod dialect;
8pub mod executor;
9pub mod introspector;
10
11pub use dialect::SqliteDialect;
12pub use executor::SqliteBackend;
13pub use introspector::SqliteIntrospector;