rustio-admin-macros 0.2.0

Proc-macros for rustio-admin (re-exported from the rustio-admin crate).
Documentation

rustio-admin

Django Admin, but for Rust. A small, focused admin framework for Postgres-backed Rust apps. From a struct to a working CRUD admin in under 50 lines of project code.

crates.io crates.io docs.rs CI License

๐ŸŽจ v0.1.1 released on 2026-05-07 โ€” design-system pass. Self-hosted Geist + Geist Mono + Tajawal + Noto Naskh Arabic (SIL OFL-1.1, ~270 KB embedded), full typography token system (--rio-font-sans / --rio-font-arabic / --rio-font-arabic-body / --rio-font-mono, 9-step size scale with a 13 px floor and a 16 px body baseline, dedicated --rio-lh-arabic: 1.9), automatic :lang(ar) + [dir="rtl"] resolution, and a new crimson #A0341A brand accent across every default. Drop-in upgrade from 0.1.0 โ€” no public API changes. See the v0.1.1 changelog and the release tag.

๐Ÿš€ v0.1.0 (2026-05-07) โ€” first public release. Three crates landed together: rustio-admin (the library), rustio-admin-macros (the RustioAdmin derive), and rustio-admin-cli (the rustio binary: startproject, startapp, migrate, user, group, perm, doctor). v0.1.0 changelog ยท release tag.

What you get

  • #[derive(RustioAdmin)] on a plain struct โ†’ list / create / edit / delete pages.
  • impl ModelAdmin for Django-style customisation (list_display, list_filter, search_fields, ordering, list_per_page).
  • DB-backed sessions, Argon2 passwords, 5-tier role hierarchy, per-model RBAC.
  • Hyper + sqlx + minijinja under the hood. Postgres only. No Tailwind, no PostCSS, no build step โ€” one hand-written stylesheet.
  • Single binary deploy. Project templates and CSS are baked in via include_str!; project overrides drop into templates/admin/.

Install

[dependencies]
rustio-admin = "0.1"
tokio  = { version = "1", features = ["macros", "rt-multi-thread"] }
chrono = { version = "0.4", features = ["serde"] }

The CLI ships separately:

cargo install rustio-admin-cli      # provides the `rustio` binary

The 3-line idea

#[derive(RustioAdmin)]
pub struct Post { pub id: i64, pub title: String, /* โ€ฆ */ }

impl Model     for Post { /* TABLE, COLUMNS, from_row, insert_values */ }
impl ModelAdmin for Post {}                            // accept every default

// In your `main`:
let admin = Admin::new().model::<Post>();
let router = register_admin_routes(Router::new(), admin, db, templates);
Server::new(router, addr).run().await?;

A model that wants more control fills in the ModelAdmin body:

impl ModelAdmin for Post {
    fn list_display()  -> &'static [&'static str] { &["title", "published", "created_at"] }
    fn list_filter()   -> &'static [&'static str] { &["published"] }
    fn search_fields() -> &'static [&'static str] { &["title", "body"] }
    fn ordering()      -> &'static [&'static str] { &["-created_at"] }
}

For a complete project skeleton see examples/minimal/ and the docs/getting-started.md walkthrough.

Documentation

Getting started cargo new to a running admin in 10 minutes.
ModelAdmin reference Every hook, every default, when to override.
Architecture Module map, runtime, public API surface.
Strategic reset plan Why the framework exists, what's in/out of scope.
Changelog Per-release summary.

Workspace layout

Crate Purpose
rustio-admin The library. Re-exports the macros.
rustio-admin-macros Proc-macros (re-exported from rustio-admin).
rustio-admin-cli The rustio binary โ€” startproject, startapp, migrate, user, group, perm, doctor.
cargo build --workspace
cargo test  --workspace

Status

v0.1.1 โ€” released 2026-05-07. Two releases shipped end-to-end against a local Postgres: v0.1.0 (initial public release; phases 1โ€“15 of the strategic-reset rollout) and v0.1.1 (design-system pass โ€” self-hosted fonts, full typography token system, crimson brand accent). Both browser-walked against the examples/minimal skeleton and a fresh rustio startproject + rustio startapp flow; the classrooms project consumes the published crate from crates.io. See the strategic reset plan for the design and the changelog for the per-release feature inventory.

Future work tracks under separate milestones โ€” v0.2 candidates include richer filter widgets (date range, multi-select), bulk actions on the list page, inline forms, and dashboard widgets. The schema-contract / drift-validator / AI-planner work that originally lived in this repo's predecessor stays explicitly out of scope and will, if it returns at all, ship as a separate rustio-pro-* family of crates.

Non-goals

rustio-admin is the admin layer and the auth/permissions/templates that surround it โ€” nothing more. Not a full web framework. Not an ORM (the Model trait is a thin sqlx shim). Not a content management system. Not AI-augmented. Not multi-database (Postgres only, on purpose). Not schema-contract-driven (the schema-contract / drift-validator / AI-planner work belongs in a future Tier-2 crate, kept entirely out of this repo).

License

MIT โ€” see LICENSE.