rustango 0.22.1

Django-shaped batteries-included web framework for Rust: ORM + migrations + auto-admin + multi-tenancy + audit log + auth (sessions, JWT, OAuth2/OIDC, HMAC) + APIs (ViewSet, OpenAPI auto-derive, JSON:API) + jobs (in-mem + Postgres) + email + media (S3 / R2 / B2 / MinIO + presigned uploads + collections + tags) + production middleware (CSRF, CSP, rate-limiting, compression, idempotency, etc.).
Documentation
//! SQL compilation and execution for rustango.
//!
//! The `Clause` IR (in `rustango-core`) is dialect-neutral. This crate
//! contains the writers that turn the IR into a parameterized statement
//! per dialect, plus the async executor that binds and runs them. v0.1
//! ships Postgres only; `SQLite` and `MySQL` slot in as additional
//! `Dialect` arms in v0.2+.

mod auto;
mod compiled;
mod dialect;
mod error;
mod executor;
mod foreign_key;
pub mod m2m;
mod postgres;

pub use auto::Auto;
pub use compiled::CompiledStatement;
pub use dialect::Dialect;
pub use error::{ExecError, SqlError};
pub use executor::{
    annotate_count_children, annotate_count_children_on, bulk_insert, bulk_insert_on, bulk_update,
    bulk_update_on, count_rows, count_rows_on, delete, delete_on, fetch_aggregate,
    fetch_aggregate_on, fetch_with_prefetch, insert, insert_on, insert_returning,
    insert_returning_on, raw_execute, raw_execute_on, raw_query, raw_query_on, select_one_row,
    select_rows, transaction, update, update_on, Counter, Deleter, Fetcher, FkPkAccess,
    HasPkValue, LoadRelated, Page, Updater,
};
pub use foreign_key::ForeignKey;
pub use m2m::M2MManager;
pub use postgres::Postgres;

/// Re-exported so `#[derive(Model)]` output can name `sqlx` types without
/// requiring downstream crates to add their own dependency on it.
#[doc(hidden)]
pub use sqlx;