toasty_sql/
lib.rs

1#![warn(missing_docs)]
2
3//! SQL serialization for Toasty.
4//!
5//! This crate converts Toasty's statement AST into SQL strings for SQLite,
6//! PostgreSQL, and MySQL. It also generates DDL statements for schema
7//! migrations.
8
9/// Schema migration statement generation.
10pub mod migration;
11pub use migration::*;
12
13/// SQL serialization and parameter handling.
14pub mod serializer;
15pub use serializer::{Params, Serializer, TypedValue};
16
17/// SQL statement types for both DML and DDL operations.
18pub mod stmt;
19pub use stmt::Statement;