rustango 0.30.20

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
1
2
3
4
5
6
7
8
9
10
11
//! Admin-side re-export of the public form parsers (slice 8.4A).
//!
//! Pre-v0.8 this file held the parsers as `pub(crate)` admin-internal
//! helpers; v0.8 promoted them to `rustango::forms`. The admin's
//! existing CRUD handlers reach them through `super::forms::*`, so
//! this re-export keeps every call site working without an edit.
//!
//! The `admin` feature implies `forms`, so this re-export is always
//! available when admin is on.

pub(crate) use crate::forms::{collect_values, parse_form_value, parse_pk_string, FormError};