floz-orm 0.1.2

A lightweight, typesafe Rust ORM — unifying DAO and DSL from a single schema
Documentation

floz

A lightweight, typesafe Rust ORM that unifies DAO (Active Record) and DSL (Query Builder) APIs from a single schema! definition.

use floz::prelude::*;

floz::schema! {
    model User("users") {
        id:   integer("id").auto_increment().primary(),
        name: varchar("name", 100),
        age:  short("age"),
    }
}