//! SQL serialization for Toasty.
//!
//! This crate converts Toasty's statement AST into SQL strings for SQLite,
//! PostgreSQL, and MySQL. It also generates DDL statements for schema
//! migrations.
/// Schema migration statement generation.
pub use *;
/// SQL serialization and parameter handling.
pub use Serializer;
/// SQL statement types for both DML and DDL operations.
pub use Statement;