toasty-sql 0.5.0

SQL serialization layer for Toasty database drivers
Documentation
#![warn(missing_docs)]

//! 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 mod migration;
pub use migration::*;

/// SQL serialization and parameter handling.
pub mod serializer;
pub use serializer::Serializer;

/// SQL statement types for both DML and DDL operations.
pub mod stmt;
pub use stmt::Statement;