You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/ps-database/src/lib.rs

11 lines
209 B
Rust

//! # Database
//!
//! A implementation of the [`ps_core::DatabaseLike`] trait on top of SQLite.
mod conversion;
mod db;
mod sql;
pub use conversion::{value_from_field, RowConversion};
pub use db::Database;