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"),
}
}